dont show alert when tps is above threshold
This commit is contained in:
parent
27bef7a17c
commit
4f412f1d97
|
@ -17,6 +17,8 @@ const getRecentPerformance = async (setShow) => {
|
|||
|
||||
if (tps < 1500) {
|
||||
setShow(true)
|
||||
} else {
|
||||
setShow(false)
|
||||
}
|
||||
} catch {
|
||||
console.log('Unable to fetch TPS')
|
||||
|
|
Loading…
Reference in New Issue