From 7e2356889aa020c98a5ac128d1241b1c6cde9141 Mon Sep 17 00:00:00 2001 From: Antonella Sgarlatta Date: Mon, 25 May 2026 15:08:05 -0300 Subject: [PATCH] fix: Fixes Upgrade button in Settings leading to purchase page --- .../Components/Preferences/Panes/Account/NoProSubscription.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/web/src/javascripts/Components/Preferences/Panes/Account/NoProSubscription.tsx b/packages/web/src/javascripts/Components/Preferences/Panes/Account/NoProSubscription.tsx index 53c418a9c28..8b594e1b4b3 100644 --- a/packages/web/src/javascripts/Components/Preferences/Panes/Account/NoProSubscription.tsx +++ b/packages/web/src/javascripts/Components/Preferences/Panes/Account/NoProSubscription.tsx @@ -18,6 +18,8 @@ const NoProSubscription: FunctionComponent = ({ application, text }) => { try { if (application.isNativeIOS()) { application.showPremiumModal() + } else if (application.hasValidFirstPartySubscription()) { + void application.openSubscriptionDashboard.execute() } else { void application.openPurchaseFlow() }