mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 04:20:07 +02:00
don't pass song all the way down
This commit is contained in:
@@ -4,10 +4,10 @@ import { useCurrentSong } from '/@/renderer/store';
|
||||
export const FullScreenSimilarSongs = () => {
|
||||
const currentSong = useCurrentSong();
|
||||
|
||||
return (
|
||||
return currentSong ? (
|
||||
<SimilarSongsList
|
||||
fullScreen
|
||||
song={currentSong}
|
||||
/>
|
||||
);
|
||||
) : null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user