From bcf924a2047e717422ce852dc2f65cbf9c770486 Mon Sep 17 00:00:00 2001 From: Craig Alexander Date: Sun, 3 Aug 2025 23:22:02 -0400 Subject: [PATCH] match the original style --- frontend/src/components/ChannelList.tsx | 2 +- frontend/src/components/PlaylistList.tsx | 2 +- frontend/src/components/VideoList.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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) {