'disabled' all view limitation for now (just set it really high)

This commit is contained in:
dekzter 2026-02-17 17:29:26 -05:00
parent b24d51c2aa
commit 7c0ce190d2

View file

@ -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);