I’m trying Mobile Linking Filtering as per Moralis docs and couln’t manage to make it work so far. I used the Moralis signin boilerplate and change it like this:
async function login() {
try {
currentUser = Moralis.User.current();
if(!currentUser){
currentUser = await Moralis.authenticate({
provider: "walletconnect",
mobileLinks: [
"metamask",
"trust",
]
})
}
} catch (error) {
console.log(error);
}
}
I then started the site on my localhost with with the Live Server extension of VS-Code, accessed it on my Android phone, I press the Login button and the wallet-connect prompt appears but then I see all installed wallets and not only the 2 I passed.
Have you maybe tested this by any chance?