From f297b19ab61c786fd29b55cf89eb32e66959ba59 Mon Sep 17 00:00:00 2001 From: Noah Saso Date: Tue, 7 Jan 2025 02:24:16 -0500 Subject: [PATCH] deleted word chain --- packages/stateful/components/apps/AppsRenderer.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/stateful/components/apps/AppsRenderer.tsx b/packages/stateful/components/apps/AppsRenderer.tsx index d9b9cecde..d5b42bf92 100644 --- a/packages/stateful/components/apps/AppsRenderer.tsx +++ b/packages/stateful/components/apps/AppsRenderer.tsx @@ -412,7 +412,7 @@ export const AppsRenderer = ({ mode, ...props }: AppsRendererProps) => { return { type: 'error', error: - `Failed to connect to chain ${getDisplayNameForChainId(chainId)} (${chainId}).` + + `Failed to connect to ${getDisplayNameForChainId(chainId)} (${chainId}).` + (executionType !== 'normal' ? ' Ensure the chain picker is set to the correct chain for the target address.' : ''), @@ -495,7 +495,7 @@ export const AppsRenderer = ({ mode, ...props }: AppsRendererProps) => { return { type: 'error', error: - `Failed to connect to chain ${getDisplayNameForChainId(chainId)} (${chainId}).` + + `Failed to connect to ${getDisplayNameForChainId(chainId)} (${chainId}).` + (executionType !== 'normal' ? ' Ensure the chain picker is set to the correct chain for the target address.' : ''), @@ -542,7 +542,7 @@ export const AppsRenderer = ({ mode, ...props }: AppsRendererProps) => { return { type: 'error', error: - `Failed to connect to chain ${getDisplayNameForChainId(chainId)} (${chainId}).` + + `Failed to connect to ${getDisplayNameForChainId(chainId)} (${chainId}).` + (executionType !== 'normal' ? ' Ensure the chain picker is set to the correct chain for the target address.' : ''),