From 28b522f0155ccc40fc04059d77f61c88c8a8c9e5 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Tue, 6 Jan 2026 11:52:49 -0800 Subject: [PATCH] Report pending signer to user --- src/routes/+layout.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,