diff --git a/apps/client/src/features/auth/services/auth-service.ts b/apps/client/src/features/auth/services/auth-service.ts index 1a396c8e..20e437f3 100644 --- a/apps/client/src/features/auth/services/auth-service.ts +++ b/apps/client/src/features/auth/services/auth-service.ts @@ -38,7 +38,7 @@ export async function forgotPassword(data: IForgotPassword): Promise { await api.post("/auth/forgot-password", data); } -export async function passwordReset(data: IPasswordReset): Promise<{ requiresLogin?: boolean; message?: string }> { +export async function passwordReset(data: IPasswordReset): Promise<{ requiresLogin?: boolean; }> { const req = await api.post("/auth/password-reset", data); return req.data; }