diff --git a/src/components/WorldMap.jsx b/src/components/WorldMap.jsx index 848e9d7..11e8843 100644 --- a/src/components/WorldMap.jsx +++ b/src/components/WorldMap.jsx @@ -859,8 +859,8 @@ export const WorldMap = ({ )}
- ● DE - ● DX + ● DE + ● DX
{showPOTA && (
diff --git a/src/utils/config.js b/src/utils/config.js index 27edc4d..a3f965d 100644 --- a/src/utils/config.js +++ b/src/utils/config.js @@ -116,6 +116,11 @@ export const loadConfig = () => { // Mark if config needs setup (no callsign set anywhere) config.configIncomplete = (config.callsign === 'N0CALL' || !config.locator); + // Always inject version from server (not a user preference — server is source of truth) + if (serverConfig?.version) { + config.version = serverConfig.version; + } + return config; };