import Foundation /// Routes notification taps into the in-app notifications inbox (mirrors Android `open_notifications`). @MainActor final class PushNotificationRouter: ObservableObject { static let shared = PushNotificationRouter() @Published var shouldOpenInbox = false func openInbox() { shouldOpenInbox = true } func consumeOpenInboxRequest() { shouldOpenInbox = false } }