Skip to content

Commit

Permalink
Fix get_track_page() running twice on load
Browse files Browse the repository at this point in the history
  • Loading branch information
probablykasper committed Sep 25, 2024
1 parent b5a89ea commit dd59509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TrackList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
groupAlbumTracks: $group_album_tracks,
})
}
$: if ($tracklist_updated || $tracks_updated || true) {
$: if ($tracklist_updated || $tracks_updated) {
tracks_page = methods.get_tracks_page({
playlistId: params.playlist_id,
filterQuery: $filter,
Expand Down

0 comments on commit dd59509

Please sign in to comment.