fix: correct import path for GetProductsDocument
All checks were successful
Build Docker Image / build (push) Successful in 3m47s

This commit is contained in:
Ruslan Bakiev
2026-01-08 07:48:55 +07:00
parent c4d0ddb14b
commit 1e179ab04c

View File

@@ -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) {