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"); };