From ae883dffd300bb126ddb9dff782a7cceb8b156d7 Mon Sep 17 00:00:00 2001 From: Net Date: Fri, 23 Aug 2024 17:28:33 +0700 Subject: [PATCH] refactor: edit type --- src/stores/product-service/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index f3fc2276..18fc82a5 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -10,6 +10,7 @@ export interface TreeProduct { id: string; code: string; type?: 'group' | 'type'; + [x: string]: any; } export interface Service { @@ -190,7 +191,6 @@ export type ProductGroup = { detail: string; remark: string; status: Status; - type: string; createdBy: CreatedBy; createdAt: string; updatedBy: UpdatedBy;