Skip to content

Commit

Permalink
feat: 🎸 add christmas wrapping to basket (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaskaransarkaria authored Dec 13, 2023
1 parent 969a3e1 commit 711844c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib/components/Basket/Basket.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
$: outerWidth = 0;
$: isMobile = outerWidth < 1280 ? true : false;
$: selectedGiftWrap = $basket.filter((item) => item.categoryId === 1876089);
$: selectedGiftWrap = $basket.filter(
(item) => item.categoryId === 1876089 || item.categoryId === 1892399
);
</script>

<svelte:window bind:outerWidth />
Expand Down Expand Up @@ -71,6 +73,10 @@
data-sveltekit-preload-data
href="/shop/category/1876089">here</a
>
& christmas wrap
<a data-sveltekit-preload-data href="/shop/category/1892399"
>here</a
>
<hr />
<select
role="combobox"
Expand Down

0 comments on commit 711844c

Please sign in to comment.