From b326d8cd76ecd1f307051b92a1ba7932daa30fb1 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev Date: Sun, 25 Jan 2026 22:38:59 +0700 Subject: [PATCH] Fix supplierUuid -> uuid parameter in GetSupplierProfile call --- app/composables/useCatalogInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/composables/useCatalogInfo.ts b/app/composables/useCatalogInfo.ts index eae9c8c..f570fad 100644 --- a/app/composables/useCatalogInfo.ts +++ b/app/composables/useCatalogInfo.ts @@ -83,7 +83,7 @@ export function useCatalogInfo() { try { const profileData = await execute( GetSupplierProfileDocument, - { supplierUuid: uuid }, + { uuid }, 'public', 'exchange' )