Sync Member registration form with Contacts?

@lmeyer

No because you shouldn’t be using Address as it is, it should be broken down into the seperate parts of the address.

See here for more info.
https://www.wix.com/corvid/reference/wix-users-backend.html#Address

You have this in your contact info as well.

So you will need to change your address part from that one line to something like this for both parts.

let street = $w("#street").value;
 let city = $w("#city").value;
 let zip = $w("#zip").value;
 let country = $w("#country").value;
 "street": $w('#street').value,
 "city": $w('#city').value,
 "zip": $w('#zip').value,
 "country": $w('#country').value

Try the above and see if that works instead.