From e0b326c5653a84a80d6a2716bc14793f882c72b2 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 16 Nov 2025 15:15:00 -0800 Subject: [PATCH] fix type --- .../components/item-list/item-grid-list/item-grid-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx index 63fbebfcb..d7ebb3a37 100644 --- a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx +++ b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx @@ -59,7 +59,7 @@ interface VirtualizedGridListProps { onScroll?: ItemGridListProps['onScroll']; onScrollEnd?: ItemGridListProps['onScrollEnd']; outerRef: RefObject; - ref: RefObject>; + ref: RefObject | null>; rows?: ItemCardProps['rows']; tableMeta: null | { columnCount: number;