From 8595a2b8b06a23319ae5667bfe5963b0e44fef0a Mon Sep 17 00:00:00 2001 From: k00b Date: Sun, 1 Dec 2024 17:01:02 -0600 Subject: [PATCH] stop probable source of 504 toasts --- components/item-act.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/item-act.js b/components/item-act.js index ec8b9555..37289567 100644 --- a/components/item-act.js +++ b/components/item-act.js @@ -285,8 +285,9 @@ export function useZap () { return } - const reason = error?.message || error?.toString?.() - toaster.danger(reason) + // TODO: we should selectively toast based on error type + // but right now this toast is noisy for optimistic zaps + console.error(error) } }, [act, toaster, strike, wallets.length]) }