chore: temporarily remove manage sub button for android

This commit is contained in:
Antonella Sgarlatta
2026-06-07 00:06:33 -03:00
parent 09ffb07909
commit c2bdda2ccb
2 changed files with 6 additions and 4 deletions
@@ -50,9 +50,11 @@ const NotEntitledBanner: FunctionComponent<Props> = ({ featureStatus, feature })
</div>
</div>
<div className={'right'}>
<Button onClick={manageSubscription} primary colorStyle="success" small>
Manage subscription
</Button>
{application.canShowPurchaseFlow() && (
<Button onClick={manageSubscription} primary colorStyle="success" small>
Manage subscription
</Button>
)}
</div>
</div>
</div>
@@ -14,7 +14,7 @@ const SubscriptionInformation = () => {
return (
<>
<SubscriptionStatusText />
{!isSharedSubscription && (
{!isSharedSubscription && application.canShowPurchaseFlow() && (
<Button className="mr-3 mt-3 min-w-20" label="Manage subscription" onClick={manageSubscription} />
)}
</>