From 66b95f2ef8d992baf5e0080148a9edb75e6f96ec Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Fri, 27 Jun 2025 10:06:54 -0500 Subject: [PATCH] Fixes channels not actually filtering based on selected group. --- frontend/src/pages/Guide.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Guide.jsx b/frontend/src/pages/Guide.jsx index 340cd286..eae1c2a7 100644 --- a/frontend/src/pages/Guide.jsx +++ b/frontend/src/pages/Guide.jsx @@ -110,7 +110,7 @@ export default function TVChannelGuide({ startDate, endDate }) { // Apply channel group filter if (selectedGroupId !== 'all') { result = result.filter( - (channel) => channel.channel_group?.id === parseInt(selectedGroupId) + (channel) => channel.channel_group_id === parseInt(selectedGroupId) ); }