diff --git a/KisaniCal/Managers/NotificationManager.swift b/KisaniCal/Managers/NotificationManager.swift index aaf9da1..0172d28 100644 --- a/KisaniCal/Managers/NotificationManager.swift +++ b/KisaniCal/Managers/NotificationManager.swift @@ -40,7 +40,7 @@ final class NotificationManager: NSObject, ObservableObject, @unchecked Sendable intentIdentifiers: [], options: .customDismissAction) let logAction = UNNotificationAction(identifier: Self.logWorkoutActId, - title: "Yes, I completed it ✓", options: []) + title: "Yes, I completed it", options: []) let missedAction = UNNotificationAction(identifier: Self.missedWorkoutActId, title: "No, I didn't", options: []) let snoozeAction = UNNotificationAction(identifier: Self.snoozeWorkoutActId, @@ -191,7 +191,7 @@ final class NotificationManager: NSObject, ObservableObject, @unchecked Sendable || settings.authorizationStatus == .provisional else { return } let content = UNMutableNotificationContent() content.title = title - content.body = nextOccurrence.map { "✓ Done. Repeats \(Self.relativeRepeat(to: $0))." } ?? "✓ Done." + content.body = nextOccurrence.map { "Done. Repeats \(Self.relativeRepeat(to: $0))." } ?? "Done." content.sound = nil // quiet confirmation, not an alert self.center.add(UNNotificationRequest( identifier: "kisani.recurdone.\(UUID().uuidString)",