From aff5855037f172827325a4b8f7c66f5b36997905 Mon Sep 17 00:00:00 2001 From: Azimjon <53890046+azimjonn@users.noreply.github.com> Date: Sat, 26 Apr 2025 08:09:29 +0900 Subject: [PATCH] Update reset password message Remove the ending period in the password reset success message to pass playwright tests. --- frontend/src/routes/reset-password.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/reset-password.tsx b/frontend/src/routes/reset-password.tsx index f55f49e287..91cf9fb71d 100644 --- a/frontend/src/routes/reset-password.tsx +++ b/frontend/src/routes/reset-password.tsx @@ -54,7 +54,7 @@ function ResetPassword() { const mutation = useMutation({ mutationFn: resetPassword, onSuccess: () => { - showSuccessToast("Password updated successfully.") + showSuccessToast("Password updated successfully") reset() navigate({ to: "/login" }) },