chore: remove unused

This commit is contained in:
Methapon Metanipat 2024-10-28 09:43:33 +07:00
parent bc83970c57
commit d4a2999de7

View file

@ -265,7 +265,7 @@ async function assignToProductServiceList() {
} }
} }
async function submitAccepted(id: string) { async function submitAccepted() {
dialog({ dialog({
color: 'info', color: 'info',
icon: 'mdi-account-check', icon: 'mdi-account-check',
@ -276,7 +276,7 @@ async function submitAccepted(id: string) {
action: async () => { action: async () => {
if (!quotationFormData.value.id) return; if (!quotationFormData.value.id) return;
const rse = await quotationForm.accepted(quotationFormData.value.id); await quotationForm.accepted(quotationFormData.value.id);
}, },
cancel: () => {}, cancel: () => {},
}); });