fix hostname

This commit is contained in:
2026-03-07 00:27:14 +01:00
parent 55b3b61bbf
commit 56ed5909c7
3 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -23,14 +23,14 @@ export const PublicNetworkView = ({ data, domain }: { data: GeoData, domain: str
<InfoRow
icon={GlobeAltIcon}
label="Hostname"
value={domain}
value={data.hostname || 'N/A'}
canCopy
iconColor="text-indigo-500"
/>
<InfoRow
icon={MapPinIcon}
label="Location"
value={data.countryName || 'Unknown Location'}
value={data.countryName || 'N/A'}
iconColor="text-emerald-500"
/>
<InfoRow