From e99a4e2b08dffd9d5b08aeec81ebb046842c4323 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Mon, 2 Mar 2026 18:36:50 +0100 Subject: [PATCH] Update notification-settings.tsx --- AppImage/components/notification-settings.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AppImage/components/notification-settings.tsx b/AppImage/components/notification-settings.tsx index beef4b4e..a9cef89e 100644 --- a/AppImage/components/notification-settings.tsx +++ b/AppImage/components/notification-settings.tsx @@ -710,7 +710,8 @@ matcher: proxmenux-pbs {/* ── Channel Cards Grid ── */}
{CHANNEL_DEFS.map(ch => { - const chCfg = (config.channels as Record)[ch.key] + const channels: Record = config.channels + const chCfg = channels[ch.key] const isEnabled = chCfg?.enabled || false const isSelected = selectedChannel === ch.key