fix route refresh

This commit is contained in:
hamid zarghami
2025-12-04 09:28:36 +03:30
parent f62b7a8070
commit 14b0e112a2
+1 -1
View File
@@ -44,7 +44,7 @@ export const refreshToken = async (
params: RefreshTokenType
): Promise<RefreshTokenResponse> => {
const { data } = await axios.post<RefreshTokenResponse>(
`/auth/refresh`,
`/admin/auth/refresh`,
params
);
return data;