match the original style

This commit is contained in:
Craig Alexander 2025-08-03 23:22:02 -04:00
parent a5275a4f52
commit bcf924a204
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ const ChannelList = ({ channelList, refreshChannelList }: ChannelListProps) => {
const viewStyle = userConfig.view_style_channel;
if (!channelList || channelList.length === 0) {
return <p>No channels found...</p>;
return <h2>No channels found...</h2>;
}
return (

View File

@ -17,7 +17,7 @@ const PlaylistList = ({ playlistList, setRefresh }: PlaylistListProps) => {
const viewStyle = userConfig.view_style_playlist;
if (!playlistList || playlistList.length === 0) {
return <p>No playlists found...</p>;
return <h2>No playlists found...</h2>;
}
return (

View File

@ -19,7 +19,7 @@ const VideoList = ({
refreshVideoList,
}: VideoListProps) => {
if (!videoList || videoList.length === 0) {
return <p>No videos found...</p>;
return <h2>No videos found...</h2>;
}
if (viewStyle === ViewStylesEnum.Table) {