diff --git a/LocalPackages/SyncUI/Sources/SyncUI/Resources/en.lproj/Localizable.strings b/LocalPackages/SyncUI/Sources/SyncUI/Resources/en.lproj/Localizable.strings index 68f7f7409b..f2b05cff75 100644 --- a/LocalPackages/SyncUI/Sources/SyncUI/Resources/en.lproj/Localizable.strings +++ b/LocalPackages/SyncUI/Sources/SyncUI/Resources/en.lproj/Localizable.strings @@ -103,9 +103,6 @@ /* Standard Buttons - Paste Button */ "paste.button" = "Paste"; -/* Description of rollout banner */ -"preferences.sync.rollout-banner.description" = "Sync & Backup is rolling out gradually and may not be available yet within DuckDuckGo on your other devices."; - /* Preparing To Sync Sheet - Description */ "preparing.to.sync.sheet.description" = "Your bookmarks and passwords are being prepared to sync. This should only take a moment."; diff --git a/LocalPackages/SyncUI/Sources/SyncUI/Views/Internal/UserText.swift b/LocalPackages/SyncUI/Sources/SyncUI/Views/Internal/UserText.swift index b36ab14850..95b047394f 100644 --- a/LocalPackages/SyncUI/Sources/SyncUI/Views/Internal/UserText.swift +++ b/LocalPackages/SyncUI/Sources/SyncUI/Views/Internal/UserText.swift @@ -25,7 +25,6 @@ public struct UserText { // Sync Title public static let syncTitle = NSLocalizedString("sync.title", bundle: Bundle.module, value: "Sync & Backup", comment: "Sync & Backup Title") - static let syncRollOutBannerDescription = NSLocalizedString("preferences.sync.rollout-banner.description", bundle: Bundle.module, value: "Sync & Backup is rolling out gradually and may not be available yet within DuckDuckGo on your other devices.", comment: "Description of rollout banner") // Sync Set Up // Sync With Another Device Card diff --git a/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsView.swift b/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsView.swift index fc442ce77c..65540ccd93 100644 --- a/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsView.swift +++ b/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsView.swift @@ -43,7 +43,6 @@ public struct SyncSettingsView: View { } } } else { - rolloutBanner() List { if model.isSyncEnabled { diff --git a/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsViewExtension.swift b/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsViewExtension.swift index bfec4047d5..c1c01c5c93 100644 --- a/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsViewExtension.swift +++ b/LocalPackages/SyncUI/Sources/SyncUI/Views/SyncSettingsViewExtension.swift @@ -316,24 +316,6 @@ extension SyncSettingsView { } } - @ViewBuilder - func rolloutBanner() -> some View { - Section { - HStack(alignment: .top, spacing: 16) { - Image("Info-Color-16") - Text(UserText.syncRollOutBannerDescription) - .font(.system(size: 12)) - .foregroundColor(.primary) - .multilineTextAlignment(.leading) - .fixedSize(horizontal: false, vertical: true) - } - } - .padding() - .background(RoundedRectangle(cornerRadius: 8).foregroundColor(Color("RolloutBannerBackground"))) - .padding(.bottom, 10) - .padding(.horizontal, 14) - } - enum LimitedItemType { case bookmarks case credentials