From 0c54b79c0944b1ad5d7bc3ae48dd0b88f0b9bf65 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 16 Jul 2023 23:57:31 -0700 Subject: [PATCH] Clean up --- src/renderer/components/virtual-grid/grid-card/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/renderer/components/virtual-grid/grid-card/index.tsx b/src/renderer/components/virtual-grid/grid-card/index.tsx index 8235cda8..2fa29e79 100644 --- a/src/renderer/components/virtual-grid/grid-card/index.tsx +++ b/src/renderer/components/virtual-grid/grid-card/index.tsx @@ -20,8 +20,6 @@ export const GridCard = memo(({ data, index, style }: ListChildComponentProps) = resetInfiniteLoaderCache, } = data as GridCardData; - console.log('data', data); - const cards = []; const startIndex = index * columnCount; const stopIndex = Math.min(itemCount - 1, startIndex + columnCount - 1);