import { ScannerCheckoutContent } from './ScannerCheckoutSheet.js'; export default function ScannerReview({ queue, collections, variant, onOpenListPicker, }) { if (variant === 'side-panel') { const cartCount = queue.scannedCards.filter((card) => !card.processed).length; return (

Cart {cartCount > 0 && ( ({cartCount}) )}

{cartCount === 0 ? (

Scanned cards appear here. Use Review to commit when ready.

) : (
)}
); } return null; }