This commit is contained in:
Azalea
2024-02-28 20:07:31 -05:00
parent 256f08396f
commit 02bffab38f
5 changed files with 2 additions and 23 deletions

View File

@@ -35,9 +35,6 @@
console.log(trend)
console.log(music)
// Sort recent by date
user.recent.sort((a, b) => b.playDate < a.playDate ? -1 : 1)
d = {user, trend, recent: user.recent.map(it => {return {...music[it.musicId], ...it}})}
localStorage.setItem("tmp-user-details", JSON.stringify(d))
renderCal(calElement, trend.map(it => {return {date: it.date, value: it.plays}}))