From 14b0e112a2324c58187591441905349f5bebc12a Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Thu, 4 Dec 2025 09:28:36 +0330 Subject: [PATCH] fix route refresh --- src/pages/auth/service/AuthService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/auth/service/AuthService.ts b/src/pages/auth/service/AuthService.ts index eb563c9..9337f02 100644 --- a/src/pages/auth/service/AuthService.ts +++ b/src/pages/auth/service/AuthService.ts @@ -44,7 +44,7 @@ export const refreshToken = async ( params: RefreshTokenType ): Promise => { const { data } = await axios.post( - `/auth/refresh`, + `/admin/auth/refresh`, params ); return data;