Rank 1: Thread
I have created an account with appwrite then logged it. both of them are working fine. but when i'm trying to get the user by using this method:
export const getAccount = async () => { try { const user = await account.get(); return user; } catch (error: any) { console.error("An error occurred while fetching user:", error); }};it's not getting any user info. how can i fix this issue?