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]) }