fix incorrect imageId assignments (#1456)

This commit is contained in:
jeffvli
2025-12-30 15:18:03 -08:00
parent 6ddaf0366c
commit 4a025f82e4
13 changed files with 28 additions and 23 deletions
@@ -121,7 +121,7 @@ export const LeftControls = () => {
styles.playerbarImage,
PlaybackSelectors.playerCoverArt,
)}
id={currentSong?.id}
id={currentSong?.imageId}
itemType={LibraryItem.SONG}
loading="eager"
/>
@@ -92,7 +92,7 @@ export const MobilePlayerbar = () => {
styles.playerbarImage,
PlaybackSelectors.playerCoverArt,
)}
id={currentSong.id}
id={currentSong.imageId}
itemType={LibraryItem.SONG}
loading="eager"
/>