From 5ac8707f386bd154ca85883f8db51a14696b8abe Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Fri, 25 Oct 2024 16:55:10 +0700 Subject: [PATCH] fix: typo --- src/stores/invoice/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/invoice/index.ts b/src/stores/invoice/index.ts index 9b41d7c9..49c723c5 100644 --- a/src/stores/invoice/index.ts +++ b/src/stores/invoice/index.ts @@ -4,7 +4,7 @@ import { api } from 'src/boot/axios'; import { PaginationResult } from 'src/types'; import { Invoice, InvoicePayload } from './types'; -export const useWorkflowTemplate = defineStore('workflow-store', () => { +export const useInvoice = defineStore('workflow-store', () => { const data = ref([]); const page = ref(1); const pageMax = ref(1);