add loading overlay to playqueue on fetching

This commit is contained in:
jeffvli
2025-11-10 20:28:46 -08:00
parent 17c4d3e5fb
commit 1a16b74f98
2 changed files with 28 additions and 23 deletions
@@ -7,11 +7,10 @@ import { ItemListKey } from '/@/shared/types/types';
export const SidebarPlayQueue = () => {
const tableRef = useRef<null>(null);
// const queueRef = useRef<null | { grid: AgGridReactType<Song> }>(null);
const [search, setSearch] = useState<string | undefined>(undefined);
return (
<Flex direction="column" h="100%">
<Flex direction="column" h="100%" w="100%">
<PlayQueueListControls
handleSearch={setSearch}
searchTerm={search}