diff --git a/pages/auth/forgot-password.tsx b/pages/auth/forgot-password.tsx index d674cc5ee..dabc81364 100644 --- a/pages/auth/forgot-password.tsx +++ b/pages/auth/forgot-password.tsx @@ -49,7 +49,7 @@ const ForgotPassword: NextPageWithLayout< recaptchaRef.current?.reset(); if (!response.ok) { - toast.error(json.error.message); + toast.error(t(`${json.error.message}`)); return; }