diff --git a/apps/trading/components/bootstrapper/bootstrapper.tsx b/apps/trading/components/bootstrapper/bootstrapper.tsx index 2238b39d8..3a699c32b 100644 --- a/apps/trading/components/bootstrapper/bootstrapper.tsx +++ b/apps/trading/components/bootstrapper/bootstrapper.tsx @@ -1,6 +1,5 @@ import type { InMemoryCacheConfig } from '@apollo/client'; import { - AppLoader, NetworkLoader, useEnvironment, useNodeSwitcherStore, @@ -86,10 +85,6 @@ export const Bootstrapper = ({ children }: { children: ReactNode }) => { })); const config = useVegaWalletConfig(); - if (!config) { - return ; - } - const ERR_DATA_LOADER = ( { skeleton={} failure={} > - {children} + {config ? ( + {children} + ) : ( + + )} diff --git a/libs/i18n/src/locales/en/trading.json b/libs/i18n/src/locales/en/trading.json index ee047d5d6..22d0871c8 100644 --- a/libs/i18n/src/locales/en/trading.json +++ b/libs/i18n/src/locales/en/trading.json @@ -66,6 +66,7 @@ "Copy": "Copy", "Copy Market ID": "Copy Market ID", "Could not configure web3 provider": "Could not configure web3 provider", + "Could not configure the wallet provider": "Could not configure the wallet provider", "Could not initialize app": "Could not initialize app", "Countdown": "Countdown", "Create": "Create",