Fix chat list responsiveness

This commit is contained in:
Jon Staab
2026-01-06 14:52:13 -08:00
parent 619cf2e134
commit e5d1b82a9d
4 changed files with 22 additions and 16 deletions
+1 -2
View File
@@ -146,9 +146,8 @@
const recent = $log.slice(-10)
const success = recent.filter(spec({status: SignerLogEntryStatus.Success}))
const failure = recent.filter(spec({status: SignerLogEntryStatus.Failure}))
const pending = recent.filter(spec({status: SignerLogEntryStatus.Pending}))
if (!$toast && (failure.length > 5 || pending.length > 5) && success.length === 0) {
if (!$toast && failure.length > 5 && success.length === 0) {
pushToast({
theme: "error",
timeout: 60_000,