Manually merge PR #1799.

This commit is contained in:
Mike Cao 2023-04-17 10:26:08 -07:00
parent 43499eb4fd
commit d2edb0d0d7
2 changed files with 13 additions and 4 deletions

View file

@ -146,7 +146,7 @@ export default function RealtimeLog({ data, websiteDomain }) {
<div className={styles.body}>
{logs?.length === 0 && <NoData />}
{logs?.length > 0 && (
<FixedSizeList height={400} itemCount={logs.length} itemSize={40}>
<FixedSizeList height={500} itemCount={logs.length} itemSize={50}>
{Row}
</FixedSizeList>
)}