From 52b955f5dafa54d6cfff567e6b810bdcf3f94634 Mon Sep 17 00:00:00 2001 From: shannon Date: Tue, 28 Jan 2025 11:36:19 -0500 Subject: [PATCH] Additional info for beta feature testing --- .../BetaTestSettingsViewController.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Settings/Beta Testing Settings/BetaTestSettingsViewController.swift b/Mastodon/Scene/Settings/Beta Testing Settings/BetaTestSettingsViewController.swift index aec43d55e..ec58fe42f 100644 --- a/Mastodon/Scene/Settings/Beta Testing Settings/BetaTestSettingsViewController.swift +++ b/Mastodon/Scene/Settings/Beta Testing Settings/BetaTestSettingsViewController.swift @@ -52,7 +52,7 @@ enum BetaTestSetting: Hashable { case .clearPreviousDonationCampaigns: return "Clear donation history" case .useGroupedNotifications: - return "Test grouped notifications" + return "Test grouped notifications (WORK IN PROGRESS!)" } } } @@ -131,6 +131,9 @@ class BetaTestSettingsViewController: UIViewController { } @objc func didToggleGroupedNotifications(_ sender: UISwitch) { viewModel = viewModel.byToggling(.useGroupedNotifications) + let alert = UIAlertController(title: "Relaunch Required", message: "This change will not take effect until you relaunch the app.", preferredStyle: .alert) + alert.addAction(UIAlertAction(title: "OK", style: .default)) + present(alert, animated: true) } func loadFromViewModel(animated: Bool = true) {