fix container ref instances

This commit is contained in:
jeffvli
2025-11-16 01:10:40 -08:00
parent 4ba7306855
commit 31d9ab048d
14 changed files with 155 additions and 164 deletions
@@ -13,11 +13,11 @@ import { GenreListSort, LibraryItem, SortOrder } from '/@/shared/types/domain-ty
import { ItemListKey } from '/@/shared/types/types';
export const GenreListHeaderFilters = () => {
const cq = useContainerQuery();
const { ref, ...cq } = useContainerQuery();
return (
<Flex justify="space-between">
<Group gap="sm" ref={cq.ref} w="100%">
<Group gap="sm" ref={ref} w="100%">
<ListSortByDropdown
defaultSortByValue={GenreListSort.NAME}
itemType={LibraryItem.GENRE}