Skip to content

Commit

Permalink
fix: removed unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
404answernotfound committed Oct 17, 2024
1 parent 4ab9e13 commit 112cc91
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/shared/login/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ export function LoginForm({ description, target }: LoginFormProps) {
)

useEffect(() => {
console.log(target)
const handler = async () => {
if (!requestedMagicLink && validateUserEmailState.valid) {
setWorking(true)
const reply = await signIn("email", {
await signIn("email", {
email: validateUserEmailState.email,
redirect: false,
})
Expand Down

0 comments on commit 112cc91

Please sign in to comment.