feat: make all activity grids configurable

This commit is contained in:
Gabe Farrell 2025-06-17 20:29:18 -04:00
parent 7ed60b3785
commit 5a2cb437a1
7 changed files with 141 additions and 108 deletions

View file

@ -59,7 +59,7 @@ export default function Artist() {
<div className="flex gap-15 mt-10 flex-wrap">
<LastPlays limit={20} artistId={artist.id} />
<TopTracks limit={8} period={period} artistId={artist.id} />
<ActivityGrid configurable autoAdjust artistId={artist.id} />
<ActivityGrid configurable artistId={artist.id} />
</div>
<ArtistAlbums period={period} artistId={artist.id} name={artist.name} />
</div>