Skip to content

Commit

Permalink
Move Notification outside of form
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaninotto authored Mar 9, 2020
1 parent cbce569 commit 41d33b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ const MyLoginPage = ({ theme }) => {
<form onSubmit={submit}>
<input name="email" type="email" value={email} onChange={e => setEmail(e.target.value)} />
<input name="password" type="password" value={password} onChange={e => setPassword(e.target.value)} />
<Notification />
</form>
<Notification />
</ThemeProvider>
);
};
Expand Down

0 comments on commit 41d33b4

Please sign in to comment.