diff --git a/ui-common/src/components/TrafficViewer/EntriesList.tsx b/ui-common/src/components/TrafficViewer/EntriesList.tsx index ceaed9015..53456eed0 100644 --- a/ui-common/src/components/TrafficViewer/EntriesList.tsx +++ b/ui-common/src/components/TrafficViewer/EntriesList.tsx @@ -127,7 +127,7 @@ export const EntriesList: React.FC = ({ if (!focusedEntryId) setFocusedEntryId(entry.id.toString()); const newEntries = [...entries, entry]; if (newEntries.length === 10001) { - setLeftOffTop(newEntries[0].entry.id); + setLeftOffTop(newEntries[0].id); newEntries.shift(); setNoMoreDataTop(false); }