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