mirror of
https://github.com/standardnotes/app
synced 2026-09-13 00:45:26 -04:00
chore: temporarily remove manage sub button for android
This commit is contained in:
@@ -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>
|
||||
|
||||
+1
-1
@@ -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} />
|
||||
)}
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user