From 1d2de37ceb028c2161a574fbb86dd2f082ce4149 Mon Sep 17 00:00:00 2001 From: Jaskaran Sarkaria Date: Fri, 29 Nov 2024 23:04:18 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20remove=20tags?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/shop/category/[category]/+page.svelte | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/routes/shop/category/[category]/+page.svelte b/src/routes/shop/category/[category]/+page.svelte index 263ec6b6..117b88b7 100644 --- a/src/routes/shop/category/[category]/+page.svelte +++ b/src/routes/shop/category/[category]/+page.svelte @@ -3,8 +3,6 @@ import { page } from "$app/stores"; import CategoryView from "$lib/components/CategoryView/CategoryView.svelte"; - const tags = $page.data.tags; - $: categoryToShow = $page.data.categoryToShow; $: productArr = $page.data.productArr; @@ -29,5 +27,4 @@ {categoryToShow} whitelistedUserAgent={$page.data.whitelistedUserAgent} {productArr} - {tags} />