Skip to content

Commit

Permalink
remember that current song can be an object
Browse files Browse the repository at this point in the history
  • Loading branch information
kgarner7 committed Feb 19, 2024
1 parent 3a116e9 commit 12d0eca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useCurrentSong } from '/@/renderer/store';
export const FullScreenSimilarSongs = () => {
const currentSong = useCurrentSong();

return currentSong ? (
return currentSong?.id ? (
<SimilarSongsList
fullScreen
song={currentSong}
Expand Down

0 comments on commit 12d0eca

Please sign in to comment.