Update print statement from 'Hello' to 'Goodbye'

This commit is contained in:
Natxo
2026-03-16 11:46:15 +01:00
committed by GitHub
parent 2fd4362354
commit a7663f2874

View File

@@ -260,7 +260,7 @@ const CartView = html`
<h3>Cart (${() => cart().length} items)</h3> <h3>Cart (${() => cart().length} items)</h3>
<ul> <ul>
${() => cart().map(item => html` ${() => cart().map(item => html`
<li>${item.name} - $.storage{item.price}</li> <li>${item.name} - ${item.price}</li>
`)} `)}
</ul> </ul>
<button @click=${() => cart([])}>Clear Cart</button> <button @click=${() => cart([])}>Clear Cart</button>