diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-05-16 12:27:21 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-05-16 12:27:21 -0400 |
| commit | 18752008f9abd7749f61f8d674f66de2a535c131 (patch) | |
| tree | 5825328e58cf8a4a196532f8b40d515b185cd8ea /frontend/components/Signin.js | |
| parent | 802b65cfd634305f62d88cb57c54f8c053701d27 (diff) | |
SSR with Auth
Diffstat (limited to 'frontend/components/Signin.js')
| -rw-r--r-- | frontend/components/Signin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/components/Signin.js b/frontend/components/Signin.js index 9e25cf1..7a4db8c 100644 --- a/frontend/components/Signin.js +++ b/frontend/components/Signin.js @@ -28,7 +28,7 @@ class Signin extends Component { {client => ( <Mutation mutation={SIGNIN_MUTATION} variables={this.state}> {(signin, { loading, error }) => ( - <Form method="post" onSubmit={e => this.loginUser(e, signin, client)}> + <Form onSubmit={e => this.loginUser(e, signin, client)}> <Error error={error} /> <fieldset disabled={loading} aria-busy={loading}> <label htmlFor="email"> |
