Skip to content

Commit

Permalink
fix: signin password check removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Riddhiagrawal001 committed Aug 2, 2024
1 parent b6944c2 commit f5bc2ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/entryPoints/AuthModule/BasicAuth/BasicAuth.res
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ let make = (~authType, ~setAuthType) => {
| ResendVerifyEmail
| LoginWithEmail => ["email"]
| SignUP => featureFlagValues.email ? ["email"] : ["email", "password"]
| LoginWithPassword => ["email", "password"]
| LoginWithPassword => ["email"]
| ResetPassword => ["create_password", "comfirm_password"]
| _ => []
}
Expand Down
2 changes: 1 addition & 1 deletion src/entryPoints/AuthModule/TwoFaAuth/TwoFaAuth.res
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ let make = (~setAuthStatus, ~authType, ~setAuthType) => {
| ResendVerifyEmail
| LoginWithEmail => ["email"]
| SignUP => featureFlagValues.email ? ["email"] : ["email", "password"]
| LoginWithPassword => ["email", "password"]
| LoginWithPassword => ["email"]
| ResetPassword => ["create_password", "comfirm_password"]
| _ => []
}
Expand Down

0 comments on commit f5bc2ee

Please sign in to comment.