From 1fa7af2fd9d37073b01b4333b0859acb875c6947 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Thu, 1 Feb 2024 21:06:26 -0600 Subject: [PATCH] More --- src/Components/SignupPage/SignupPage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js index 264c14b..30a4ca6 100644 --- a/src/Components/SignupPage/SignupPage.js +++ b/src/Components/SignupPage/SignupPage.js @@ -30,7 +30,8 @@ import "../../styles/signup.scss"; import Stripe from "stripe"; import { stripeApiKey } from "../../secrets"; -const SignupPage = () => { +const SignupPage = (props) => { + const { isUpgrade } = props; const navigate = useNavigate(); const [notice, setNotice] = useState(""); const fieldsChunkSize = 2;