Merge pull request #285 from sgtwilko/patch-1

Use window.location.host so that websites run on non-standard ports i…
This commit is contained in:
Tom Fifield
2025-02-12 08:48:17 +08:00
committed by GitHub

View File

@@ -23,7 +23,7 @@ export const HTTP = ({ closeDialog }: TabElementProps): JSX.Element => {
window.location.hostname,
)
? "meshtastic.local"
: window.location.hostname,
: window.location.host,
tls: location.protocol === "https:",
},
});