From 95d806717b6aee3744051858ff9dbb9c27cd4a8c Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Mon, 16 Feb 2026 17:40:19 -0800 Subject: [PATCH] Default to heuristic repeater grouping --- frontend/src/components/PacketVisualizer3D.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/PacketVisualizer3D.tsx b/frontend/src/components/PacketVisualizer3D.tsx index ad39699..3bd9daf 100644 --- a/frontend/src/components/PacketVisualizer3D.tsx +++ b/frontend/src/components/PacketVisualizer3D.tsx @@ -892,7 +892,7 @@ export function PacketVisualizer3D({ // Options const [showAmbiguousPaths, setShowAmbiguousPaths] = useState(true); const [showAmbiguousNodes, setShowAmbiguousNodes] = useState(false); - const [splitAmbiguousByTraffic, setSplitAmbiguousByTraffic] = useState(false); + const [splitAmbiguousByTraffic, setSplitAmbiguousByTraffic] = useState(true); const [chargeStrength, setChargeStrength] = useState(-200); const [observationWindowSec, setObservationWindowSec] = useState(DEFAULT_OBSERVATION_WINDOW_SEC); const [letEmDrift, setLetEmDrift] = useState(true);