From 006edb558a4380b85c9a26e6eebbea5de231a496 Mon Sep 17 00:00:00 2001 From: John Rogers Date: Tue, 11 Mar 2025 14:57:29 +0000 Subject: [PATCH 1/2] remove language drop down --- src/components/AppBar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AppBar.js b/src/components/AppBar.js index 8f86ed6..ace6372 100644 --- a/src/components/AppBar.js +++ b/src/components/AppBar.js @@ -158,7 +158,7 @@ function HarmonyAppBar() { - + {/* - + */} Model From ac412300b31cc9127ac574e7dfaf7d72c4edcc01 Mon Sep 17 00:00:00 2001 From: John Rogers Date: Thu, 3 Jul 2025 12:18:53 +0100 Subject: [PATCH 2/2] make setup API calls have douhbel the timeout of the standard ones to avoid API unreachable errors --- .DS_Store | Bin 8196 -> 8196 bytes src/contexts/DataContext.js | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.DS_Store b/.DS_Store index 2bf305b4274375503a86c2237d0e1f2a8b1e65bb..ea6f93dac1dd4533c9a6e611c32abc10bda5d72a 100644 GIT binary patch delta 39 vcmZp1XmOa}&nU4mU^hRb#AF_U%+1pT3fU(%C~jt#_{OqXPV^ { return retryableGetData({ url: process.env.REACT_APP_API_VERSION, - timeout: 2500, + timeout: 10000, }).then((data) => data.harmony_version || "unknown"); }, []); const getModels = useCallback(() => { return retryableGetData({ url: process.env.REACT_APP_API_MODELS, - timeout: 2500, + timeout: 10000, }); }, []);