feat: open purchase flow when clicking upgrade cta with no account (#1771)

This commit is contained in:
Aman Harwara
2022-10-08 01:39:40 +05:30
committed by GitHub
parent 59db63f052
commit 734b986294
2 changed files with 10 additions and 13 deletions

View File

@@ -12,18 +12,6 @@ const UpgradeNow = ({ application, featuresController }: Props) => {
const shouldShowCTA = !featuresController.hasFolders
const hasAccount = application.hasAccount()
const openPlansPage = () => {
if (!window.plansUrl) {
return
}
if (application.isNativeMobileWeb()) {
application.mobileDevice().openUrl(window.plansUrl)
} else {
window.location.assign(window.plansUrl)
}
}
return shouldShowCTA ? (
<div className="flex h-full items-center px-2">
<button
@@ -34,7 +22,7 @@ const UpgradeNow = ({ application, featuresController }: Props) => {
return
}
openPlansPage()
application.getViewControllerManager().purchaseFlowController.openPurchaseFlow()
}}
>
Upgrade now