From bf3eeaa4f18b2a88ebc26b89009754eed79f4f1a Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Mon, 26 Jun 2023 23:08:57 +0000 Subject: [PATCH] adjust latency threshold --- packages/app/constants/settings/about/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/constants/settings/about/index.jsx b/packages/app/constants/settings/about/index.jsx index b981b3a6..51caafc7 100755 --- a/packages/app/constants/settings/about/index.jsx +++ b/packages/app/constants/settings/about/index.jsx @@ -37,10 +37,10 @@ const Footer = () => { const latencyToColor = (latency, type) => { switch (type) { case "http": { - if (latency < 100) { + if (latency < 200) { return "green" } - if (latency < 200) { + if (latency < 500) { return "orange" } return "red"