From dc173b591412ea4e0aa88930c9cac73295b73fdc Mon Sep 17 00:00:00 2001 From: Noah Saso Date: Tue, 24 Sep 2024 11:25:33 -0400 Subject: [PATCH] log custom action input error to console --- packages/stateful/actions/core/actions/Custom/Component.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/stateful/actions/core/actions/Custom/Component.tsx b/packages/stateful/actions/core/actions/Custom/Component.tsx index 60be98fa9..82b9ea76a 100644 --- a/packages/stateful/actions/core/actions/Custom/Component.tsx +++ b/packages/stateful/actions/core/actions/Custom/Component.tsx @@ -100,6 +100,7 @@ export const CustomComponent: ActionComponent = ({ validateCosmosMsgForChain(chainId, makeCosmosMsg(msg)) ) } catch (err) { + console.error('Custom error', err) return err instanceof Error ? err.message : `${err}` }