From bf00ffda3cf7958138040d337e2727041996221c Mon Sep 17 00:00:00 2001 From: accius Date: Tue, 3 Feb 2026 00:32:55 -0500 Subject: [PATCH] color issues --- src/components/WorldMap.jsx | 4 ++-- src/utils/config.js | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) 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; };