From d57d6be271c27fe3c4b7c59b0998624e09e0cc30 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Wed, 29 Oct 2025 15:35:49 +0330 Subject: [PATCH] fix: build --- src/pages/products/types/Types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/products/types/Types.ts b/src/pages/products/types/Types.ts index 7f4619f..b63b686 100644 --- a/src/pages/products/types/Types.ts +++ b/src/pages/products/types/Types.ts @@ -251,7 +251,8 @@ export type GetProductVariantsResponseType = { status: number; success: boolean; results: { - productVariant: ProductVariantDetailType; + productVariants: ProductVariantDetailType[]; + count: number; }; };