fix: do actually print entire line

This commit is contained in:
neoarz
2026-01-06 21:14:39 -05:00
parent 09e2a40688
commit 20868595a8
3 changed files with 4 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ pub fn get_ip_info() -> String {
}
}
return format!("Local IP ({}): {}", interface, ip_with_cidr);
return format!("({}) {}", interface, ip_with_cidr);
}
}
}