Remove some unneeded duplication and fix up reconnection management

This commit is contained in:
Jack Kingsman
2026-01-30 21:03:58 -08:00
parent b6c3e13234
commit 1ea809c4e3
16 changed files with 50 additions and 152 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ export function sortContactsByDistance(
/**
* Get simple hop count from path string
*/
export function getHopCount(path: string | null | undefined): number {
function getHopCount(path: string | null | undefined): number {
if (!path || path.length === 0) {
return 0;
}