Wishlist for shop

async function loginMessageClick() {
   let options = {"mode": "login"};
   $w('#loginMessage').hide();
   wixUsers.promptLogin(options)
   .then( () => {
      let url = wixLocation.url;
      wixLocation.to(`${url}`);
   })
   .catch( (err) => {
      //error
   });
}