diff --git a/src/stores/quotations/index.ts b/src/stores/quotations/index.ts index 0038e3e0..6668f48b 100644 --- a/src/stores/quotations/index.ts +++ b/src/stores/quotations/index.ts @@ -29,6 +29,7 @@ export const useQuotationStore = defineStore('quotation-store', () => { paymentInProcess: 0, paymentSuccess: 0, processComplete: 0, + canceled: 0, }); async function getQuotationStats() { diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 53ca9c54..fc0ee77d 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -203,6 +203,7 @@ export type QuotationStats = { paymentInProcess: number; paymentSuccess: number; processComplete: number; + canceled: number; }; export type Quotation = {