From 5d90727718f380d10be1d4fd12f320c9afb65d43 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Sat, 28 Feb 2026 17:23:06 -0800 Subject: [PATCH] Remove advert info and add arrows between advert path nodes --- frontend/src/components/ContactInfoPane.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/ContactInfoPane.tsx b/frontend/src/components/ContactInfoPane.tsx index 9c46294..9b929f4 100644 --- a/frontend/src/components/ContactInfoPane.tsx +++ b/frontend/src/components/ContactInfoPane.tsx @@ -272,14 +272,6 @@ export function ContactInfoPane({ )} - {/* Advert Info */} - {detail && detail.advert_frequency !== null && ( -
- Advert Observations -

{detail.advert_frequency.toFixed(1)} observations/hour

-
- )} - {/* Nearest Repeaters */} {detail && detail.nearest_repeaters.length > 0 && (
@@ -310,7 +302,9 @@ export function ContactInfoPane({ key={p.path + p.first_seen} className="flex justify-between items-center text-sm" > - {p.path || '(direct)'} + + {p.path ? p.path.match(/.{2}/g)!.join(' → ') : '(direct)'} + {p.heard_count}x · {formatTime(p.last_seen)}