bug fixes on the homepage

This commit is contained in:
Anton Kupriianov 2025-05-07 13:04:25 -07:00
parent 0c476a6484
commit c28a45c60b

View file

@ -2,7 +2,6 @@ import React from "react";
function SignUpForm() { function SignUpForm() {
const authUrl = import.meta.env.VITE_AUTH_URL; const authUrl = import.meta.env.VITE_AUTH_URL;
const [state, setState] = React.useState({ const [state, setState] = React.useState({
name: "", name: "",
email: "", email: "",
@ -33,7 +32,6 @@ function SignUpForm() {
}; };
const googleAuth = () => { const googleAuth = () => {
window.open(authUrl, "_self"); window.open(authUrl, "_self");
}; };