From 7d57a8990c11c7e669e2926ca217a7d6189e90b4 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Thu, 1 Feb 2024 23:26:56 -0600 Subject: [PATCH] more --- src/Components/Account/AccountPage.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Components/Account/AccountPage.js b/src/Components/Account/AccountPage.js index a6b4f6f..b461669 100644 --- a/src/Components/Account/AccountPage.js +++ b/src/Components/Account/AccountPage.js @@ -24,6 +24,12 @@ const AccountPage = () => { ? process.env.REACT_APP_API_DEV : process.env.REACT_APP_API_PROD; + const handleConfirmUpgrade = () => { + const isUpgrade = true; + const currentPlan = group?.subscriptionPlan; + navigate(`/signup/${isUpgrade}/${currentPlan}`); + }; + function getDocumentsCount() { if (!appUserId) { return; @@ -102,6 +108,7 @@ const AccountPage = () => {