Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
dijonmusters committed Jun 20, 2023
1 parent 98bc967 commit 978c4de
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/with-supabase/app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@ export default function Login() {

const handleSignIn = async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault()
const { data, error } = await supabase.auth.signInWithPassword({
await supabase.auth.signInWithPassword({
email,
password,
})
console.log({ data, error })
router.push('/')
}

Expand Down

0 comments on commit 978c4de

Please sign in to comment.