reimplement genre detail route

This commit is contained in:
jeffvli
2025-11-24 20:19:09 -08:00
parent eba485034a
commit d3132ad570
30 changed files with 443 additions and 190 deletions
@@ -12,7 +12,7 @@ export const getTitlePath = (itemType: LibraryItem, id: string) => {
case LibraryItem.ARTIST:
return generatePath(AppRoute.LIBRARY_ARTISTS_DETAIL, { artistId: id });
case LibraryItem.GENRE:
return generatePath(AppRoute.LIBRARY_GENRES_ALBUMS, { genreId: id });
return generatePath(AppRoute.LIBRARY_GENRES_DETAIL, { genreId: id });
case LibraryItem.PLAYLIST:
return generatePath(AppRoute.PLAYLISTS_DETAIL_SONGS, { playlistId: id });
default: