diff --git a/apps/web/app/components/StorePageSection.vue b/apps/web/app/components/StorePageSection.vue index fae99a34..831dd445 100644 --- a/apps/web/app/components/StorePageSection.vue +++ b/apps/web/app/components/StorePageSection.vue @@ -6,6 +6,7 @@ import { endedPurchaseStore, storeUrl } from '~/utils/constants' import { useWithBase } from '#imports' const { translate: t } = useTranslation() +const withBase = useWithBase() const products: Product[] = [ { @@ -99,7 +100,7 @@ const products: Product[] = [ const productsWithBase = products.map((product) => ({ ...product, - src: useWithBase(product.src), + src: withBase(product.src), })) diff --git a/apps/web/app/components/ticket/TicketSection.vue b/apps/web/app/components/ticket/TicketSection.vue index a017f694..0f37bb45 100644 --- a/apps/web/app/components/ticket/TicketSection.vue +++ b/apps/web/app/components/ticket/TicketSection.vue @@ -1,8 +1,9 @@