Submit button Unsupported URL to Member Page

I have a site where users can register and then fill out a profile and other data. When they fill out the profile data (a form on a members page), I have a submit button that saves the data to the dataset. Now I want it to link to the show profile page in the members’ area. I set up the link to the Profile page in the dataset connection for a successful save. I’ve two issues:

  1. The URL that shows up as the link is “account/new-page”
  2. When I have a successful save I get the following error message:
    “Wix code SDK Error: undefined/new-page is an unsupported URL”

I’m including a screenshot of the connection link setup.

Has anyone seen this? Thoughts on how to solve it?

Adding another screenshot.

I have the same issue. This occurs with “member pages” only… Other pages work fine.

I found I can get the redirect to work if I do the dataset save and redirection in the page’s code instead of relying on the UI to set it up. Code example:
$w(“#button1”).onClick( (event) => {
$w(“#dataset1”).save()
.then(() => {
wixLocation.to(“/account/new-page-11”);
})
. catch ((err) => {
let errMsg = err;
console.log(errMsg);
});
});