From aec2d8a080db8039d7c2a0efaa3b2a428e1c1ab9 Mon Sep 17 00:00:00 2001 From: Rick van der Staaij Date: Tue, 22 Mar 2022 22:26:58 +0100 Subject: [PATCH] Disable wonky server version check --- frontend/App/SettingsPanel/About/Version/Version.tsx | 8 -------- package.json | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/frontend/App/SettingsPanel/About/Version/Version.tsx b/frontend/App/SettingsPanel/About/Version/Version.tsx index 96dccd0b..e48db59f 100644 --- a/frontend/App/SettingsPanel/About/Version/Version.tsx +++ b/frontend/App/SettingsPanel/About/Version/Version.tsx @@ -41,14 +41,6 @@ const Version = (): ReactElement => { return You are on the latest version.; } - if (isNewest('PACKAGE_VERSION', version.server)) { - return ( - - Your dashboard is out of sync with the server. Reload the page to see the latest changes. - - ); - } - return ( A newer version {version.latest} is available. You're currently running PACKAGE_VERSION, consider diff --git a/package.json b/package.json index 326db500..a982d89e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cimonitor", - "version": "4.1.0", + "version": "4.1.1", "description": "Monitors all your projects CI automatically", "repository": "git@github.com:CIMonitor/CIMonitor.git", "license": "MIT",