Skip to content

Commit

Permalink
fix: login form action
Browse files Browse the repository at this point in the history
  • Loading branch information
debendraoli committed Nov 26, 2024
1 parent 9330586 commit 8f9cdc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(authentication)/login/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function Login({ callbackUrl }: { callbackUrl: string }) {
<Alert variant="danger" show={error !== ''} onClose={() => setError('')} dismissible>
{error}
</Alert>
<Form onSubmit={login}>
<Form action={login}>
<InputGroup className="mb-3">
<InputGroupText>
<FontAwesomeIcon icon={faUser} fixedWidth />
Expand Down

0 comments on commit 8f9cdc8

Please sign in to comment.