From c692ab8b73c2ccb93f127116600d47d808986399 Mon Sep 17 00:00:00 2001 From: TDLaouer Date: Mon, 14 Jul 2025 13:19:31 +0200 Subject: [PATCH] fix global var --- pages/index.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pages/index.vue b/pages/index.vue index cece792..a73ea07 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -26,7 +26,7 @@ /> - + @@ -39,10 +39,6 @@ const cardStore = useCardStore(); cardStore.fetchCollections(); const activeItem = ref(); -const isUploadActive = computed(() => - config.public.isUploadActive === "true" ? true : false, -); - const play = (collection: string) => { navigateTo({ path: "game", query: { collection: collection } }); };