diff --git a/src/stores/quotations/index.ts b/src/stores/quotations/index.ts index c434b677..7e9218f8 100644 --- a/src/stores/quotations/index.ts +++ b/src/stores/quotations/index.ts @@ -60,7 +60,7 @@ export const useQuotationStore = defineStore('quotation-store', () => { } async function createQuotation(data: QuotationPayload) { - const { _count, ...payload } = data; + const { _count, quotationStatus, ...payload } = data; const res = await api.post('/quotation', { ...payload,