diff --git a/src/components/library/GenreList.tsx b/src/components/library/GenreList.tsx index b321473..ca458a9 100644 --- a/src/components/library/GenreList.tsx +++ b/src/components/library/GenreList.tsx @@ -22,7 +22,7 @@ const GenreList = () => { const history = useHistory(); const config = useAppSelector((state) => state.config); const album = useAppSelector((state) => state.album); - const { isLoading, isError, data: genres, error }: any = useQuery(['genreList'], async () => { + const { isLoading, isError, data: genres, error }: any = useQuery(['genrePageList'], async () => { const res = await getGenres(); return _.orderBy(res, 'songCount', 'desc'); });