Drop lame imports

This commit is contained in:
Jack Kingsman
2026-04-03 17:51:26 -07:00
parent 67873e8dd9
commit 77db7287d6
4 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ export interface PathStep {
hiddenLabel?: string | null;
}
export function normalizeHopToken(hop: string | null | undefined): string | null {
function normalizeHopToken(hop: string | null | undefined): string | null {
const normalized = hop?.trim().toLowerCase() ?? '';
return normalized.length > 0 ? normalized : null;
}