fix: also add navigator padding when playing the first track in a queue

This commit is contained in:
Lei Nelissen
2023-04-22 23:41:25 +02:00
parent 1a5e4aee12
commit 1d7db11328

View File

@@ -9,7 +9,7 @@ export function useNavigatorPadding() {
return {
paddingTop: headerHeight,
paddingBottom: index ? 68 : 0
paddingBottom: index !== undefined ? 68 : 0
};
}