Hi why the walletconnect showing qr scan and not showing metamask, trustwallet option?
const connect = async () => {
if (!isAuthenticated) {
await Moralis.authenticate({
signingMessage: "Log in using Moralis",
provider:"walletconnect"
})
.then(function (user) {
console.log("logged in user:", user);
console.log(user.attributes.accounts[0]);
})
.catch(function (error) {
console.log(error);
toast.error(error.message);
});
}
}