actually fix the related tab (#1484)

This commit is contained in:
jeffvli
2026-01-03 03:05:53 -08:00
parent 186811156e
commit ba32832619
2 changed files with 6 additions and 1 deletions
@@ -1,5 +1,6 @@
.queue-container {
position: relative;
display: flex;
width: 100%;
min-width: 0;
height: 100%;
@@ -4,5 +4,9 @@ import { usePlayerSong } from '/@/renderer/store';
export const FullScreenSimilarSongs = () => {
const currentSong = usePlayerSong();
return currentSong?.id ? <SimilarSongsList fullScreen song={currentSong} /> : null;
return currentSong?.id ? (
<div style={{ height: '100%', width: '100%' }}>
<SimilarSongsList fullScreen song={currentSong} />
</div>
) : null;
};