From d122ae9ee2c8daffaa9f9e6209da8b61353bcbd5 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 18 Jun 2025 16:05:19 +0200 Subject: [PATCH] Chore: remove sourceforge and translation service from status page as it doesn't work anyway --- src/UI/Status/StatusGUI.svelte | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/UI/Status/StatusGUI.svelte b/src/UI/Status/StatusGUI.svelte index 66111492d..e9c36ec4d 100644 --- a/src/UI/Status/StatusGUI.svelte +++ b/src/UI/Status/StatusGUI.svelte @@ -340,26 +340,6 @@ }), }) } - { - services.push({ - name: "Version Control Server (Forgéjo)", - status: testDownload("https://source.mapcomplete.org", true).mapD((r) => { - if (r["success"]) { - return "online" - } - return "offline" - }), - }) - services.push({ - name: "Translation service (Weblate)", - status: testDownload("https://translate.mapcomplete.org", true).mapD((r) => { - if (r["success"]) { - return "online" - } - return "offline" - }), - }) - } let all = new UIEventSource<"online" | "degraded" | "offline">("online") let someLoading = new UIEventSource(true)