Skip to content

Commit

Permalink
Set default auth page to 'Sign In'
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladick102 committed Jun 7, 2024
1 parent 64358bc commit bf70e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AuthForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const AuthForm = () => {
const [createUserWithEmailAndPassword, , signUpLoading] = useCreateUserWithEmailAndPassword(auth);
const loading = signInLoading || signUpLoading;

const [showSignIn, setShowSignIn] = useState(false);
const [showSignIn, setShowSignIn] = useState(true);
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');

Expand Down

0 comments on commit bf70e39

Please sign in to comment.