chore: fix style

This commit is contained in:
MystiPanda
2024-01-21 13:46:19 +08:00
parent 327301782d
commit 2739fa60be
3 changed files with 7 additions and 8 deletions

View File

@@ -112,7 +112,7 @@ class DelayManager {
if (delay <= 0) return "Error";
if (delay > 1e5) return "Error";
if (delay >= 10000) return "Timeout"; // 10s
return `${delay} ms`;
return `${delay}`;
}
formatDelayColor(delay: number) {