From 1e179ab04c70375aa7523974c12f498b33fa93eb Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Thu, 8 Jan 2026 07:48:55 +0700 Subject: [PATCH] fix: correct import path for GetProductsDocument --- app/components/search/GlobalSearchBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {