diff --git a/frontend/src/pages/Stats.jsx b/frontend/src/pages/Stats.jsx index ba9829fe..f6ec1392 100644 --- a/frontend/src/pages/Stats.jsx +++ b/frontend/src/pages/Stats.jsx @@ -854,18 +854,15 @@ const ChannelsPage = () => { }, []); setClients(clientStats); }, [channelStats, channels, channelsByUUID, streamProfiles]); - return ( - {Object.keys(activeChannels).length === 0 ? ( { No active channels currently streaming - ) : ( - Object.values(activeChannels).map((channel) => ( - - - - )) + ) : (Object.values(activeChannels).map((channel) => ( + )) )} - + ); };