diff --git a/src/components/library/ArtistView.tsx b/src/components/library/ArtistView.tsx index 8d7904a..3c62c9c 100644 --- a/src/components/library/ArtistView.tsx +++ b/src/components/library/ArtistView.tsx @@ -126,7 +126,7 @@ const ArtistView = ({ ...rest }: any) => { useEffect(() => { if (settings.getSync('artistPageLegacy') && !rest.isModal) { - history.push(`/library/artist/${artistId}/albums`); + history.replace(`/library/artist/${artistId}/albums`); } }, [artistId, history, rest.isModal]);