
other things working well, but my delete isn't working :
deleteAccount: async (password: string) => { try { // First, delete all active sessions try { const sessions = await account.listSessions(); for (const session of sessions.sessions) { await account.deleteSession(session.$id); } } catch (error) { console.log('No sessions to delete'); }
// Verify credentials by creating a temporary session
const user = await account.get();
await account.createEmailPasswordSession(user.email, password);
// Now delete the account
await account.delete();
return true;
} catch (error) {
console.error('Delete account error:', error);
throw error;
}
},

whats the error?

(NOBRIDGE) ERROR Delete account error: [AppwriteException: User (role: guests) missing scope (account)]

@Darshan Pandya

i think when you delete all the sessions, the get call fails and might be the one throwing an error.

when i remove that i get Delete account error: [AppwriteException: Creation of a session is prohibited when a session is active.]
Recommended threads
- Query.startswith problem
Hi, i have a problem: const result = await database.listDocuments(envs.DATABASE_ID,envs.COLLECTION_ID,[Query.startsWith('date', '2025-04-01')]) this one does...
- Error uploading PDF: [AppwriteException:...
here is the my code export const uploadPDF = async (pdf) => { try { console.log("Uploading file:", pdf); const file = pdf.assets[0]; console....
- Adding and Deleting Relationships
I am currently applying a very ugly way to manage adding and subtracting team members to the team, is there a better way to do this?: export async function re...
