Finished password reset functionality BOD-165

This commit is contained in:
Patrick Fic
2020-07-24 17:13:00 -07:00
parent 8750894c56
commit 081b33cc22
11 changed files with 208 additions and 41 deletions

View File

@@ -9,7 +9,7 @@ export default function ResetPassword() {
const { mode, oobCode } = searchParams;
console.log("ResetPassword -> mode, oobCode", mode, oobCode);
if (mode === "passwordReset")
if (mode === "resetPassword")
return <UserValidatePwReset oobCode={oobCode} />;
return <UserRequestResetPw />;
}