𝙁𝘼𝙇𝙇𝙀𝙉𝘾𝘼𝙋Original post
Rank 2: Process
I'm getting invalid email on signup altough the email is valid
Summary
The user had an issue with getting an "invalid email" error message while signing up, despite having a valid email. The issue has been solved by changing the parameters order in the account creation function. The correct order is:
```js
account.create(
uuidv4(),
user.email,
user.password,
user.name
)
```
More details can be found in the documentation: https://appwrite.io/docs/client/account?sdk=web-default#accountCreate