dont show alert when tps is above threshold

This commit is contained in:
tjs 2022-03-04 19:44:58 -05:00
parent 27bef7a17c
commit 4f412f1d97
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ const getRecentPerformance = async (setShow) => {
if (tps < 1500) {
setShow(true)
} else {
setShow(false)
}
} catch {
console.log('Unable to fetch TPS')