diff --git a/src/components/WalletEmbed.tsx b/src/components/WalletEmbed.tsx index cfc42f7..bd271b8 100644 --- a/src/components/WalletEmbed.tsx +++ b/src/components/WalletEmbed.tsx @@ -1,4 +1,4 @@ -import React, { useEffect } from 'react'; +import { useEffect } from 'react'; import { createWallet } from '../utils/accounts'; import { useNetworks } from '../context/NetworksContext'; @@ -73,5 +73,5 @@ export const WalletEmbed = () => { return () => window.removeEventListener('message', handleCreateAccounts); }, [networksData]); - return

Text

; + return null; };