Skip to content

Commit

Permalink
Frontend color change suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
Roene-JustBetter committed Nov 18, 2024
1 parent 8d652ec commit 0dedd20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/js/stores/useCart.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ export const taxTotal = computed(() => {
return cart.value.prices.applied_taxes.reduce((sum, tax) => sum + tax.amount.value, 0)
})

// watch(mask, refresh)
// if (cartStorage.value?.id && !mask.value) {
// clear()
// }
watch(mask, refresh)
if (cartStorage.value?.id && !mask.value) {
clear()
}

export default () => cart

0 comments on commit 0dedd20

Please sign in to comment.