const currentAccount = '' const getEVMAccountId = () => { if (ethers !== undefined) { return Ethers.send('eth_requestAccounts', [])[0] ?? '' } return '' } const currentAccountId = getEVMAccountId() !== '' ? getEVMAccountId() : context.accountId return ( <div> {currentAccountId.length > 0 ? ( <div>Logged In</div> ) : ( <Widget src="sipars.testnet/widget/Login" /> )} </div> )