diff --git a/components/GlobalNotification.tsx b/components/GlobalNotification.tsx index 69769a59..427e602a 100644 --- a/components/GlobalNotification.tsx +++ b/components/GlobalNotification.tsx @@ -16,7 +16,7 @@ const getRecentPerformance = async (setShow, setTps) => { const totalTransactions = sumBy(response, 'numTransactions') const tps = totalTransactions / totalSecs - if (tps < 1800) { + if (tps < 1500) { setShow(true) setTps(tps) } else {