fix rewind page

This commit is contained in:
Gabe Farrell 2026-01-16 00:56:55 -05:00
parent 46e216ebf5
commit 6e7e7a87cc
3 changed files with 16 additions and 14 deletions

View file

@ -462,9 +462,9 @@ type NowPlaying = {
};
type RewindStats = {
title: string;
top_artists: Artist[];
top_albums: Album[];
top_tracks: Track[];
top_artists: Ranked<Artist>[];
top_albums: Ranked<Album>[];
top_tracks: Ranked<Track>[];
minutes_listened: number;
avg_minutes_listened_per_day: number;
plays: number;