mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
remember that current song can be an object
This commit is contained in:
@@ -4,7 +4,7 @@ import { useCurrentSong } from '/@/renderer/store';
|
|||||||
export const FullScreenSimilarSongs = () => {
|
export const FullScreenSimilarSongs = () => {
|
||||||
const currentSong = useCurrentSong();
|
const currentSong = useCurrentSong();
|
||||||
|
|
||||||
return currentSong ? (
|
return currentSong?.id ? (
|
||||||
<SimilarSongsList
|
<SimilarSongsList
|
||||||
fullScreen
|
fullScreen
|
||||||
song={currentSong}
|
song={currentSong}
|
||||||
|
|||||||
Reference in New Issue
Block a user