This is my code and I am based out of New Zealand and the users ( most of them test ) are pointing to Taiwan, this is a recent observation. In the past, the contacts were rightly pointing ot NZ
export function processEmailRegistration ( email , password , code ) {
return new Promise (( resolve , reject ) => {
wixUsersBackend . register ( email , password )
. then (( results ) => {
resolve ( results );
})
. catch (( error ) => {
console . log ( "Registration error " , error );
reject ( error )
})
})
}