Should i write it this way or how?
Moralis.onAccountsChanged(async function(accounts) {
await Moralis.unlink(address);
if (user) {
const confirmed = unlinked(
"Are you sure you want to unlink this address from your account?"
);
if (confirmed) {
alert("Address unlink!");
console.log("Address unlinked");
}
}
});