From c28a45c60b2b785e86dee1a50d7fc29329e2d92b Mon Sep 17 00:00:00 2001 From: Anton Kupriianov Date: Wed, 7 May 2025 13:04:25 -0700 Subject: [PATCH] bug fixes on the homepage --- src/pages/SignUp.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/SignUp.jsx b/src/pages/SignUp.jsx index 123ae6c..ce30594 100644 --- a/src/pages/SignUp.jsx +++ b/src/pages/SignUp.jsx @@ -2,7 +2,6 @@ import React from "react"; function SignUpForm() { const authUrl = import.meta.env.VITE_AUTH_URL; - const [state, setState] = React.useState({ name: "", email: "", @@ -33,7 +32,6 @@ function SignUpForm() { }; const googleAuth = () => { - window.open(authUrl, "_self"); };