Okay, then all you need to do is just send an email address. So I think you need to replace the order of the arguments like so.
const promise = account.create(
uuidv4,
user.email,
user.password,
user.name
)
You can see more here: https://appwrite.io/docs/client/account?sdk=web-default#accountCreate
Try this and lmn
Also, What version of Appwrite you're using?
I just sign up for the hackathon as i received the mail. let me check what version
Ohh you on the cloud
That's cool no need to check the version
version 1.1.2
am sorry am disturbing u
it d not work
let me send d preview screenshot
It's okay
What error you're getting now?
That's weird, Can you show me your updated code?
ok
should i also show my config file
Maybe the uuidv4 needed to be a function.
Like this
const promise = account.create(
uuidv4(),
user.email,
user.password,
user.name
)
Okay
yes it has thank u
uuid was meant to be a function
am grateful
My question y does d order matter
In a regular JS function it's matter, yes.
ok thank u
Recommended threads
- How to Display File in Web?
I'm trying to use Appwrite's Storage to store images and display them in my app, however when I use the `getFileView`, `getFileDownload` or `getFilePreview` met...
- Project Paused Despite Daily Active Usag...
I noticed that my project was automatically **paused**, even though it is actively being used. The project is an **attendance application** that is used daily b...
- Sudden CORS Errors - Domain hasn't Chang...
I have an Appwrite project with two web apps configured, the first one has the hostname `*` and the second one I just added to test if it could fix the issue wi...