diff --git a/src/stores/customer/index.ts b/src/stores/customer/index.ts index 80e70caf..755c3b0b 100644 --- a/src/stores/customer/index.ts +++ b/src/stores/customer/index.ts @@ -35,7 +35,7 @@ const useCustomerStore = defineStore('api-customer', () => { }, ); - ifres: if (res && res.status === 200) { + if (res && res.status === 200) { return res.data; }