diff --git a/Sources/Panels/PanelContentView.swift b/Sources/Panels/PanelContentView.swift index 9049e166..579614a3 100644 --- a/Sources/Panels/PanelContentView.swift +++ b/Sources/Panels/PanelContentView.swift @@ -10,7 +10,7 @@ struct PanelContentView: View { let portalPriority: Int let isSplit: Bool let appearance: PanelAppearance - let notificationStore: TerminalNotificationStore + @ObservedObject var notificationStore: TerminalNotificationStore let onFocus: () -> Void let onRequestPanelFocus: () -> Void let onTriggerFlash: () -> Void diff --git a/Sources/Panels/TerminalPanelView.swift b/Sources/Panels/TerminalPanelView.swift index 4486d724..2f3f2b51 100644 --- a/Sources/Panels/TerminalPanelView.swift +++ b/Sources/Panels/TerminalPanelView.swift @@ -10,7 +10,7 @@ struct TerminalPanelView: View { let portalPriority: Int let isSplit: Bool let appearance: PanelAppearance - let notificationStore: TerminalNotificationStore + @ObservedObject var notificationStore: TerminalNotificationStore let onFocus: () -> Void let onTriggerFlash: () -> Void