From 81f5bde287bf4275e76248dfea56ea7ad1c61e2b Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Fri, 3 Apr 2026 22:06:00 -0700 Subject: [PATCH] Add hop counts to width selection --- .../src/components/ChannelPathHashModeOverrideModal.tsx | 6 +++--- frontend/src/components/settings/SettingsRadioSection.tsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/ChannelPathHashModeOverrideModal.tsx b/frontend/src/components/ChannelPathHashModeOverrideModal.tsx index 242cc8c..156c60b 100644 --- a/frontend/src/components/ChannelPathHashModeOverrideModal.tsx +++ b/frontend/src/components/ChannelPathHashModeOverrideModal.tsx @@ -53,17 +53,17 @@ export function ChannelPathHashModeOverrideModal({ { value: 0, label: '1-byte hop identifiers', - description: 'Shortest paths, least repeater disambiguation', + description: 'Least repeater disambiguation, up to 63 hops', }, { value: 1, label: '2-byte hop identifiers', - description: 'Better repeater disambiguation', + description: 'Better repeater disambiguation, up to 32 hops', }, { value: 2, label: '3-byte hop identifiers', - description: 'Best repeater disambiguation, longest paths', + description: 'Best repeater disambiguation, up to 21 hops', }, ]; diff --git a/frontend/src/components/settings/SettingsRadioSection.tsx b/frontend/src/components/settings/SettingsRadioSection.tsx index 2d5dc73..f8c5932 100644 --- a/frontend/src/components/settings/SettingsRadioSection.tsx +++ b/frontend/src/components/settings/SettingsRadioSection.tsx @@ -570,9 +570,9 @@ export function SettingsRadioSection({ onChange={(e) => setPathHashMode(e.target.value)} className="w-full h-10 px-3 rounded-md border border-input bg-background text-sm ring-offset-background focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2" > - - - + + +

Compatibility Warning