Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix(login): fixes broken login
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmeyer committed Jul 11, 2020
1 parent aa9523b commit d72c4e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/login/Login.tsx
Expand Up @@ -45,7 +45,8 @@ const Login = () => {
setPassword(value)
}

const onSignInClick = async () => {
const onSignInClick = async (event: React.MouseEvent<HTMLButtonElement>) => {
event.preventDefault()
await dispatch(login(username, password))
}

Expand Down

1 comment on commit d72c4e9

@vercel
Copy link

@vercel vercel bot commented on d72c4e9 Jul 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.