Skip to content

Commit

Permalink
handle_submit
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Jun 28, 2024
1 parent c729d99 commit f1b40c4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion services/console/src/components/auth/AuthForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,13 @@ const AuthForm = (props: Props) => {
});

return (
<form class="box">
<form
class="box"
onSubmit={(e) => {
e.preventDefault();
handleSubmit();
}}
>
{props.newUser && (
<Field
kind={FieldKind.INPUT}
Expand Down

0 comments on commit f1b40c4

Please sign in to comment.