const rowVirtualizer = useVirtual({ size: pokeData ? pokeData.pokemon_entries.length: 0, parentRef, estimateSize: useCallback(() => { return pokeData ? pokeData.pokemon_entries.length: 0 }, []);, overscan: 12 });

may I know what is the reason, I developed this in react typescript