Rank 1: Thread
Earlier I didn't find this error while sending a request. Can you help me with this error
import { Client, Account, ID } from "appwrite"; import config from "../conf/config"; const client = new Client(); const account = new Account(client); client.setEndpoint(config.appwriteURL).setProject(config.appwriteProjectID); export class authService{ async signup(name, email, password){ try { await account.create(ID.unique(), name, email, password); return true } catch (error) { console.log(error) return false } } } const authServices = new authService(); export default authServices;