From b4ebe8f6aff6a1edfbf4fee63b544809f6930c57 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 21 May 2026 02:24:46 +0000 Subject: [PATCH] Update non-pro menu label to "Upgrade to Pro" Changes the ... menu label shown to non-Pro subscribers from "Enable iCloud Sync" to "Upgrade to Pro" to better reflect that the action opens the subscription upsell. --- Ditto/DittoListView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ditto/DittoListView.swift b/Ditto/DittoListView.swift index d242c23..90da0fd 100644 --- a/Ditto/DittoListView.swift +++ b/Ditto/DittoListView.swift @@ -90,7 +90,7 @@ struct DittoListView: View { showSubscription = true } label: { Label( - subscriptionManager.isProSubscriber ? "Manage Subscription" : "Enable iCloud Sync", + subscriptionManager.isProSubscriber ? "Manage Subscription" : "Upgrade to Pro", systemImage: subscriptionManager.isProSubscriber ? "checkmark.icloud" : "icloud" ) }