chore: format

This commit is contained in:
naskya 2024-05-20 20:04:23 +09:00
parent 06bed6f230
commit 8c497014d9
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,8 @@ function tick(forceUpdateTicker = false) {
now.value = _now;
const newInterval = (now.value - _time.value) / 1000; /* ms */
const prev = currentInterval < 60 ? 10000 : currentInterval < 3600 ? 60000 : 180000;
const prev =
currentInterval < 60 ? 10000 : currentInterval < 3600 ? 60000 : 180000;
const next = newInterval < 60 ? 10000 : newInterval < 3600 ? 60000 : 180000;
if (!tickId) {