Skip to content

Commit

Permalink
don't lowercase password
Browse files Browse the repository at this point in the history
  • Loading branch information
arnnis authored Mar 6, 2020
1 parent 09d65f0 commit a442c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class Auth extends Component<Props> {
signinTeam(
this.state.domain.toLowerCase(),
this.state.email.toLowerCase(),
this.state.password.toLowerCase(),
this.state.password,
this.state.pin.toLowerCase(),
),
);
Expand Down

0 comments on commit a442c26

Please sign in to comment.