From fc63fe2702b02c8ef08720450a3bb1033ec4f906 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Mon, 10 Jun 2024 11:18:59 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B8=A5=E0=B8=9A=20ifres?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/customer/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }