maintain playlist order on header play (#1318)

This commit is contained in:
jeffvli
2025-12-04 19:50:48 -08:00
parent c27a9bf95b
commit 7ac47377f1
4 changed files with 21 additions and 11 deletions
+2
View File
@@ -6,8 +6,10 @@ interface ListContextProps {
customFilters?: Record<string, unknown>;
id?: string;
itemCount?: number;
listData?: unknown[];
pageKey: ItemListKey | string;
setItemCount?: (itemCount: number) => void;
setListData?: (items: unknown[]) => void;
}
export const ListContext = createContext<ListContextProps>({