Skip to content

Commit

Permalink
fix: add missing prop type for twoFAVerificationRequired in LoginErro…
Browse files Browse the repository at this point in the history
…rs component
  • Loading branch information
Chisomchima committed Mar 5, 2025
1 parent b43735c commit 73625a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/login/LoginErrors.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const LoginErrors = ({
emailTwoFAIncorrect,
isResetButtonPressed,
twoFAError,
twoFAVerificationRequired
twoFAVerificationRequired,
}) => {
if (error) {
return (
Expand Down Expand Up @@ -123,5 +123,6 @@ LoginErrors.propTypes = {
passwordResetEnabled: PropTypes.bool,
twoFAError: PropTypes.bool,
twoFAIncorrect: PropTypes.bool,
twoFAVerificationRequired: PropTypes.bool,
unknownStatus: PropTypes.bool,
}

0 comments on commit 73625a7

Please sign in to comment.