diff --git a/src/renderer/features/albums/components/album-list-content.tsx b/src/renderer/features/albums/components/album-list-content.tsx index 014d28568..251f91b9c 100644 --- a/src/renderer/features/albums/components/album-list-content.tsx +++ b/src/renderer/features/albums/components/album-list-content.tsx @@ -34,29 +34,41 @@ const AlbumListPaginatedTable = lazy(() => })), ); +const AlbumListFilters = () => { + return ( + + + + + + ); +}; + export const AlbumListContent = () => { + return ( + <> + + + + ); +}; + +const AlbumListSuspenseContainer = () => { const { display, grid, itemsPerPage, pagination, table } = useListSettings(ItemListKey.ALBUM); const { customFilters } = useListContext(); return ( - <> - - - - - - }> - - - + }> + + ); }; diff --git a/src/renderer/features/songs/components/song-list-content.tsx b/src/renderer/features/songs/components/song-list-content.tsx index cf5e616fb..a6297341e 100644 --- a/src/renderer/features/songs/components/song-list-content.tsx +++ b/src/renderer/features/songs/components/song-list-content.tsx @@ -32,28 +32,40 @@ const SongListPaginatedTable = lazy(() => ); export const SongListContent = () => { + return ( + <> + + + + ); +}; + +const SongListFilters = () => { + return ( + + + + + + ); +}; + +const SongListSuspenseContainer = () => { const { display, grid, itemsPerPage, pagination, table } = useListSettings(ItemListKey.SONG); const { customFilters } = useListContext(); return ( - <> - - - - - - }> - - - + }> + + ); };