diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index f354e6b3..ffe6bf8d 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -146,8 +146,9 @@ 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 && success.length === 0) { + if (!$toast && (failure.length > 5 || pending.length > 5) && success.length === 0) { pushToast({ theme: "error", timeout: 60_000,