Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
franciscop authored Jun 9, 2019
1 parent 453ccc5 commit 71ad2c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/screens/Login/Login.tsx
Original file line number Diff line number Diff line change
@@ -61,8 +61,8 @@ const Login = (props: any) => {
<TabBox activeTab={path} isLandlord={isLandlord}>
{path === Tabs.login ? (
<LoginForm
onSubmit={async (email, passowrd) => {
await logIn(email, passowrd, isLandlord)
onSubmit={async (email, password) => {
await logIn(email, password, isLandlord)
props.history.push('/')
}}
/>

0 comments on commit 71ad2c3

Please sign in to comment.