From ddffdbd0c60a04368381626ea044ecbf4ca890c7 Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 2 Dec 2025 17:00:47 +0100 Subject: [PATCH] fix: send confirmPassword in reset-password API call --- app/reset-password/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/reset-password/page.tsx b/app/reset-password/page.tsx index 4fc8492..740ec64 100644 --- a/app/reset-password/page.tsx +++ b/app/reset-password/page.tsx @@ -45,7 +45,7 @@ function ResetPasswordForm() { headers: { 'Content-Type': 'application/json', }, - body: JSON.stringify({ token, password }), + body: JSON.stringify({ token, password, confirmPassword }), }); const data = await response.json();