From 7c93e952008b379ba4ebd35e9a1ea138bcb383fa Mon Sep 17 00:00:00 2001 From: alexsparkes Date: Fri, 23 Jan 2026 23:37:28 +0000 Subject: [PATCH] fix(constants, Changelog): update marketplace URL to production and adjust iframe source --- src/config/constants.js | 2 +- src/features/misc/sections/Changelog.jsx | 21 ++++++++++++--------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/config/constants.js b/src/config/constants.js index de297807..640931d3 100644 --- a/src/config/constants.js +++ b/src/config/constants.js @@ -6,7 +6,7 @@ export const OPENSTREETMAP_URL = 'https://www.openstreetmap.org'; // Mue URLs export const WEBSITE_URL = 'https://muetab.com'; -export const MARKETPLACE_URL = 'http://localhost:3000/marketplace'; +export const MARKETPLACE_URL = 'http://muetab.com/marketplace'; export const PRIVACY_URL = 'https://muetab.com/privacy'; export const TRANSLATIONS_URL = 'https://muetab.com/docs/translations'; export const WEBLATE_URL = 'https://hosted.weblate.org/projects/mue/mue-tab/'; diff --git a/src/features/misc/sections/Changelog.jsx b/src/features/misc/sections/Changelog.jsx index 910f8d28..ef100657 100644 --- a/src/features/misc/sections/Changelog.jsx +++ b/src/features/misc/sections/Changelog.jsx @@ -4,7 +4,7 @@ import { MdOutlineWifiOff } from 'react-icons/md'; const Changelog = () => { const [isLoading, setIsLoading] = useState(true); - + const offlineMode = localStorage.getItem('offlineMode') === 'true'; const isOffline = navigator.onLine === false || offlineMode; @@ -30,19 +30,22 @@ const Changelog = () => { return (
{isLoading && ( -
+
{variables.getMessage('modals.main.loading')}
)}