diff --git a/frontend/src/pages/Stats.jsx b/frontend/src/pages/Stats.jsx
index fc6705b0..fa3250ef 100644
--- a/frontend/src/pages/Stats.jsx
+++ b/frontend/src/pages/Stats.jsx
@@ -692,25 +692,40 @@ const ChannelsPage = () => {
}, [channelStats, channels, channelsByUUID, streamProfiles]);
return (
-
- {Object.keys(activeChannels).length === 0 ? (
-
- No active channels currently streaming
-
- ) : (
- Object.values(activeChannels).map((channel) => (
-
- ))
- )}
-
+
+
+ {Object.keys(activeChannels).length === 0 ? (
+
+ No active channels currently streaming
+
+ ) : (
+ Object.values(activeChannels).map((channel) => (
+
+
+
+ ))
+ )}
+
+
);
};