suspend infinite loader on fetch

This commit is contained in:
jeffvli
2025-12-02 00:28:45 -08:00
parent aff7a61bca
commit 07523f82ce
2 changed files with 63 additions and 15 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
import { createContext, useContext } from 'react';
import { ListKey } from '/@/renderer/store';
import { ItemListKey } from '/@/shared/types/types';
interface ListContextProps {
customFilters?: Record<string, unknown>;
id?: string;
itemCount?: number;
pageKey: ListKey;
pageKey: ItemListKey | string;
setItemCount?: (itemCount: number) => void;
}