From 80f0611e97696e8477615dcd29b58de1cb22dc62 Mon Sep 17 00:00:00 2001 From: hankliu <397694072@qq.com> Date: Wed, 24 Apr 2024 08:11:11 +0800 Subject: [PATCH] feat(virtual-list): remove declared but never used var --- components/virtual-list/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/virtual-list/index.tsx b/components/virtual-list/index.tsx index 9babbc4..87c0213 100644 --- a/components/virtual-list/index.tsx +++ b/components/virtual-list/index.tsx @@ -1,6 +1,6 @@ import React, { useCallback } from 'react'; -import type { FixedSizeListProps, VariableSizeListProps } from 'react-window'; -import { FixedSizeList, VariableSizeList } from 'react-window'; +import type { FixedSizeListProps } from 'react-window'; +import { FixedSizeList } from 'react-window'; export interface VirtualListProps extends Omit, 'children'> { /**