fix: Fixed issue where per-tag preferences were not accessible with offline subscription

This commit is contained in:
Aman Harwara
2023-08-09 23:55:42 +05:30
parent 9833bba588
commit f9d9520bca
5 changed files with 9 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ type Props = {
const UpgradeNow = ({ application, featuresController, subscriptionContoller }: Props) => {
const shouldShowCTA = !featuresController.hasFolders
const hasAccount = subscriptionContoller.hasAccount
const hasAccessToFeatures = subscriptionContoller.hasFirstPartyOnlineOrOfflineSubscription
const hasAccessToFeatures = subscriptionContoller.hasFirstPartyOnlineOrOfflineSubscription()
const onClick = useCallback(() => {
if (hasAccount && application.isNativeIOS()) {