Till Sales

{#if showGiftCardInput}
£ { if (e.key === 'Enter') addGiftCard(); }} />
{:else} {/if}
{#if cart.length === 0}

Tap items above to add them to the sale.

{:else}
{#each cart as item (item.id)}
{item.label} {formatCurrency(item.price)} each
{item.qty} {formatCurrency(item.price * item.qty)}
{/each}
{itemCount} item{itemCount !== 1 ? 's' : ''} {formatCurrency(subtotal)}

Payment flow and backend integration coming soon.

{/if}