From 7c0ce190d2c85fdb6046386f12eea721760c6902 Mon Sep 17 00:00:00 2001 From: dekzter Date: Tue, 17 Feb 2026 17:29:26 -0500 Subject: [PATCH] 'disabled' all view limitation for now (just set it really high) --- 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 4394eb42..9637ec6d 100644 --- a/frontend/src/pages/Guide.jsx +++ b/frontend/src/pages/Guide.jsx @@ -88,7 +88,7 @@ import ErrorBoundary from '../components/ErrorBoundary.jsx'; export default function TVChannelGuide({ startDate, endDate }) { const [isChannelsLoading, setIsChannelsLoading] = useState(false); const [allowAllGroups, setAllowAllGroups] = useState(true); - const MAX_ALL_CHANNELS = 500; + const MAX_ALL_CHANNELS = 99999; const recordings = useChannelsStore((s) => s.recordings); const channelGroups = useChannelsStore((s) => s.channelGroups);