Skip to content

Commit

Permalink
Merge branch '467-fix-email-service' of https://github.com/bluewave-l…
Browse files Browse the repository at this point in the history
…abs/bluewave-onboarding into 467-fix-email-service
  • Loading branch information
erenfn committed Jan 13, 2025
2 parents 5e4470e + 717a4a3 commit 47b7419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/scenes/login/CheckYourEmailPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { forgotPassword } from "../../services/loginServices";
const CheckYourEmailPage = () => {
const navigate = useNavigate();
const location = useLocation();
const values = location.state.values
const { email: emailFromState } = values || {};
const values = location.state?.values || {};
const { email: emailFromState } = values;

const handleResendClick = () => {
if (emailFromState) {
Expand Down

0 comments on commit 47b7419

Please sign in to comment.