Fix genre grid route

This commit is contained in:
jeffvli 2023-08-08 01:29:12 -07:00
parent d1e5571163
commit 2a9d30e43d

View file

@ -137,8 +137,8 @@ export const GenreListGridView = ({ gridRef, itemCount }: any) => {
loading={itemCount === undefined || itemCount === null}
minimumBatchSize={40}
route={{
route: AppRoute.LIBRARY_ALBUMS_DETAIL,
slugs: [{ idProperty: 'id', slugProperty: 'albumId' }],
route: AppRoute.LIBRARY_GENRES_SONGS,
slugs: [{ idProperty: 'id', slugProperty: 'genreId' }],
}}
width={width}
onScroll={handleGridScroll}