
when i am testing my website everything is going good not errors but after deployment on only my Profile page i cannot get the value from the profile collection and also cannot update the value when i am doing that the error in the provided image is shown.
this is my appwrite setup code for update profile // update profile async updateProfile(id:string,{ name, email, ownerId, status, about, interest, }: CreateProfile) { try { return await this.databases.updateDocument( conf.appwriteDatabaseId, conf.appwriteProfileCollectionId, id, { name, email, ownerId, status, about, interest, } ); } catch (error) { console.error("appwrite service :: updateProfile :: ", error); // error thrown return false; } }
what to do i cannot figure out why it is. not showing any error on localhost why only on deployment
Recommended threads
- User (role: guests) missing scopes (["te...
I keep getting this error: ```AppwriteException: User (role: guests) missing scopes (["teams.read"]) at new AppwriteException (/usr/local/server/src/functio...
- I got arhcived project, but I didn't it
Hello, help me please, I can't use my main project in appwrite
- Queries Length Error.
Hi All, I am having a issues across my app with how i am getting data, and just wanted to check if this was an issues with the new changes on appwrite over the...
