yeeeikes fix raw packet feed sorry

This commit is contained in:
Jack Kingsman
2026-03-08 17:38:20 -07:00
parent 2732506f3c
commit 9673b25ab3
2 changed files with 4 additions and 7 deletions
+2 -2
View File
@@ -202,14 +202,14 @@ export function RawPacketList({ packets }: RawPacketListProps) {
if (packets.length === 0) {
return (
<div className="absolute inset-0 overflow-y-auto p-5 text-center text-muted-foreground">
<div className="h-full overflow-y-auto p-5 text-center text-muted-foreground">
No packets received yet. Packets will appear here in real-time.
</div>
);
}
return (
<div className="absolute inset-0 overflow-y-auto p-4 flex flex-col gap-2" ref={listRef}>
<div className="h-full overflow-y-auto p-4 flex flex-col gap-2" ref={listRef}>
{sortedPackets.map(({ packet, decoded }) => (
<div
key={getRawPacketObservationKey(packet)}