diff --git a/frontend/src/components/ChannelList.tsx b/frontend/src/components/ChannelList.tsx
index 80815e5e..214d62e5 100644
--- a/frontend/src/components/ChannelList.tsx
+++ b/frontend/src/components/ChannelList.tsx
@@ -19,7 +19,7 @@ const ChannelList = ({ channelList, refreshChannelList }: ChannelListProps) => {
const viewStyle = userConfig.view_style_channel;
if (!channelList || channelList.length === 0) {
- return
No channels found...
;
+ return No channels found...
;
}
return (
diff --git a/frontend/src/components/PlaylistList.tsx b/frontend/src/components/PlaylistList.tsx
index 58b4ef24..53cd6ec8 100644
--- a/frontend/src/components/PlaylistList.tsx
+++ b/frontend/src/components/PlaylistList.tsx
@@ -17,7 +17,7 @@ const PlaylistList = ({ playlistList, setRefresh }: PlaylistListProps) => {
const viewStyle = userConfig.view_style_playlist;
if (!playlistList || playlistList.length === 0) {
- return No playlists found...
;
+ return No playlists found...
;
}
return (
diff --git a/frontend/src/components/VideoList.tsx b/frontend/src/components/VideoList.tsx
index bfc551d4..00cfbb73 100644
--- a/frontend/src/components/VideoList.tsx
+++ b/frontend/src/components/VideoList.tsx
@@ -19,7 +19,7 @@ const VideoList = ({
refreshVideoList,
}: VideoListProps) => {
if (!videoList || videoList.length === 0) {
- return No videos found...
;
+ return No videos found...
;
}
if (viewStyle === ViewStylesEnum.Table) {