diff --git a/src/app/account/reset-password/page.tsx b/src/app/account/reset-password/page.tsx index 6168904..9853fe8 100644 --- a/src/app/account/reset-password/page.tsx +++ b/src/app/account/reset-password/page.tsx @@ -24,7 +24,7 @@ function ResetPasswordForm ({ codeParam }: { codeParam: string }) { ? 'Verify you are human to reset your password' : 'Lncvrt Games password reset'}
- {result == -1 && ( + {result == -1 ? (- {result == 1 - ? 'Unable to verify captcha, please reload page.' - : 'Password reset sucessfully'} -
- )} - {result == 0 && ( + ) : result == 0 ? ( + ) : ( + (result == 1 || result == 2) && ( ++ {result == 1 + ? 'Unable to verify captcha, please reload page.' + : 'Password reset sucessfully'} +
+ ) )} )