From fb1d0fde82705b5e1367e3bc53e1df62d0977a21 Mon Sep 17 00:00:00 2001 From: hanif salafi Date: Sun, 20 Jul 2025 03:02:15 +0700 Subject: [PATCH] feat: update auth services --- service/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/auth.ts b/service/auth.ts index 382bc2a8..49c67bca 100644 --- a/service/auth.ts +++ b/service/auth.ts @@ -71,7 +71,7 @@ export async function getProfile(token: any) { export async function postEmailValidation(data: any) { const url = "public/users/email-validation"; - return httpPostInterceptor(url, data); + return httpPost(url, data); } export async function postSetupEmail(data: any) {