Fix historical DM packet length passing and fix up some docs

This commit is contained in:
Jack Kingsman
2026-03-08 17:12:36 -07:00
parent 523fe3e28e
commit 2732506f3c
4 changed files with 14 additions and 5 deletions
+2 -2
View File
@@ -202,14 +202,14 @@ export function RawPacketList({ packets }: RawPacketListProps) {
if (packets.length === 0) {
return (
<div className="h-full overflow-y-auto p-5 text-center text-muted-foreground">
<div className="absolute inset-0 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="h-full overflow-y-auto p-4 flex flex-col gap-2" ref={listRef}>
<div className="absolute inset-0 overflow-y-auto p-4 flex flex-col gap-2" ref={listRef}>
{sortedPackets.map(({ packet, decoded }) => (
<div
key={getRawPacketObservationKey(packet)}