Skip to content

Commit

Permalink
eslint style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rohin-444 committed Oct 26, 2024
1 parent f8359e5 commit f745304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/auth/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function SignIn() {
const handleSignIn = async () => {
setMessage('');
setIsError(false);
const { data, error } = await supabase.auth.signInWithPassword({
const { error } = await supabase.auth.signInWithPassword({
email,
password,
});
Expand Down
2 changes: 1 addition & 1 deletion app/auth/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function SignUp() {
return;
}

const { data, error } = await supabase.auth.signUp({
const { error } = await supabase.auth.signUp({
email,
password,
});
Expand Down

0 comments on commit f745304

Please sign in to comment.