@rango-dev/widget-embedded 0.43.1-next.6 → 0.43.1-next.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rango-dev/widget-embedded",
3
- "version": "0.43.1-next.6",
3
+ "version": "0.43.1-next.7",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "source": "./src/index.ts",
@@ -123,9 +123,7 @@ export function WalletList(props: PropTypes) {
123
123
  ? getConciseAddress(address, ACCOUNT_ADDRESS_MAX_CHARACTERS)
124
124
  : '';
125
125
  const isConnectedButDifferentThanTargetNamespace =
126
- isConnected && wallet.isHub
127
- ? !conciseAddress
128
- : !!wallet.needsNamespace && !conciseAddress;
126
+ isConnected && !!wallet.needsNamespace && !conciseAddress;
129
127
 
130
128
  const experimentalChain = isExperimentalChain(blockchains(), chain);
131
129