enahnce(view):去掉调试语句。

This commit is contained in:
徐涛
2023-03-09 11:21:09 +08:00
parent b17b3d308e
commit 31fb8521b8

View File

@@ -17,7 +17,6 @@ export const ContinuationView: FC = () => {
const virtualListRef = useRef<VariableSizeList | null>();
const handleOnRenderAction = useCallback(
({ visibleStartIndex, visibleStopIndex }) => {
console.log('[debug]on render:', visibleStartIndex, visibleStopIndex);
updateActives(map(i => files[i].filename, range(visibleStartIndex, visibleStopIndex + 1)));
},
[files]