Code Snippet for Retrieving Accounts and Account Balance not working?

Please provide the following details too when asking for help in this category:
When I want to get my balance with the code snippet written below, it doesn’t return any value. The code snippet was gotten from the page as show in the screenshot attached.
Kindly assist

  • SDK Version: 7.0.2
  • Platform:
  • Browser Console Screenshots:
  • Related to Custom Authentication? Please provide the following info too: (Optional)
    • Verifier Name:
    • JWKS Endpoint:
    • Sample idToken(JWT)

Please provide the Web3Auth initialization and login code snippet below:
const loadWallet = async() => {
console.log(“clicked”);
const web3authProvider = await web3auth.connect();

    const solanaWallet = new SolanaWallet(web3authProvider);
    const accounts = await solanaWallet.requestAccounts();
    const connectionConfig = await solanaWallet.request({
        method: "solana_provider_config",
        params: [],
      });
      
      const connection = new Connection(connectionConfig.rpcTarget);
      
      console.log(accounts);
}

Hey @u.h.ugwu, do you receive any logs or errors on the console?

I think I am good with this now.