SongTable: fix scrolling issue

This commit is contained in:
2025-02-23 17:03:29 -08:00
parent acd31a9154
commit 8ab927333b
3 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ const SongTable: React.FC<SongTableProps> = ({ songs, isPlaying, onDelete, onSki
}, [nowPlayingIndex]);
return (
<div className="flex flex-col w-full h-full overflow-y-auto border-y" ref={songTableRef}>
<div className="flex flex-col w-full h-full overflow-y-auto" ref={songTableRef}>
{songs.map((song, index) => (
<SongRow
key={index}