diff --git a/frontend/src/pages/Guide.jsx b/frontend/src/pages/Guide.jsx index f01254bf..1c883c9a 100644 --- a/frontend/src/pages/Guide.jsx +++ b/frontend/src/pages/Guide.jsx @@ -851,10 +851,10 @@ export default function TVChannelGuide({ startDate, endDate }) { {(searchQuery !== '' || selectedGroupId !== 'all' || selectedProfileId !== 'all') && ( - - )} + + )} {filteredChannels.length}{' '} @@ -1209,9 +1209,13 @@ export default function TVChannelGuide({ startDate, endDate }) { paddingLeft: 0, // Remove any padding that might push content }} > - {channelPrograms.map((prog) => - renderProgram(prog, start) - )} + {channelPrograms.map((program) => { + return ( +
+ {renderProgram(program, start)} +
+ ); + })} );