diff --git a/app/components/search/GlobalSearchBar.vue b/app/components/search/GlobalSearchBar.vue index 829c633..5d0c5ba 100644 --- a/app/components/search/GlobalSearchBar.vue +++ b/app/components/search/GlobalSearchBar.vue @@ -186,7 +186,7 @@ const handleSearch = () => { onMounted(async () => { try { const { query } = useGraphQL() - const { GetProductsDocument } = await import('~/composables/graphql/exchange/products-generated') + const { GetProductsDocument } = await import('~/composables/graphql/public/exchange-generated') const result = await query(GetProductsDocument, {}, 'exchange', 'public') allProducts.value = result.getProducts || [] } catch (error) {