diff --git a/src/renderer/features/now-playing/components/play-queue.tsx b/src/renderer/features/now-playing/components/play-queue.tsx index b7024ee46..ff5a8f8a9 100644 --- a/src/renderer/features/now-playing/components/play-queue.tsx +++ b/src/renderer/features/now-playing/components/play-queue.tsx @@ -77,12 +77,10 @@ export const PlayQueue = ({ type }: QueueProps) => { }; const handleGridReady = () => { - if (tableConfig.followCurrentSong) { - const { api } = gridRef?.current; + const { api } = gridRef?.current; - const currentNode = api.getRowNode(current?.uniqueId); - api.ensureNodeVisible(currentNode, 'middle'); - } + const currentNode = api.getRowNode(current?.uniqueId); + api.ensureNodeVisible(currentNode, 'middle'); }; const handleColumnChange = () => {