Binyamin
I think you should send your obejcts.value As such
TypeScript
const promise = users.create(
ID.unique(),
email.value,
password.value,
name.value
);
TL;DR
The user had an issue with an invalid email but managed to solve it on their own. The solution involved passing the value of an object as an argument to a function. BloodThermic
Id kiss you if it was not weird lmao
BloodThermic
So it created an account but did not put the name
BloodThermic
Do I just need to do null
BloodThermic
GOT IT NVM
BloodThermic
[SOLVED] Invalid email
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...