From 814ef87d6cfc2329ff2769fe044a5a3ae9fa3644 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Fri, 25 Oct 2024 09:11:04 +0700 Subject: [PATCH] fix: wrong type --- src/stores/quotations/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index e05fae38..1b27be1a 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -293,7 +293,7 @@ export type QuotationPayload = { discount?: number; amount: number; product: ProductRelation; - installmentNo?: string; + installmentNo?: number; work?: WorkRelation | null; service?: ServiceRelation | null; }[];