From b2deed843a7f17769ac7d7ea31f97c5cfedfc9c5 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Thu, 17 Jul 2025 21:11:05 -0700 Subject: [PATCH] remove unused type --- apps/client/src/features/auth/services/auth-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }