I am working on an app with a cohort team and we are using createEmailPasswordSession ... all of this is being run in nextJs via a context provider.
useEffect(() => {
const getSession = async () => {
try {
await account.getSession('current');
console.log('User is signed in');
} catch (error) {
console.log(error);
}
};
getSession();
}, []);
this is great if a session exists. but if it doesn't it returns an error ... is there a better way to check if a session exists.
goal is on page loads to route user to a dashboard or not based on if they are logged in.
Recommended threads
- Problem with email links
Hi. I'm receiving emails without working links, the text that is suposed to be a link is plain text...
- Certificate generation failed:
Hi! I deleted my domain and added it back again. And this happens. I was trying [21:41:57] Certificate generation started. [21:42:00] Certificate generation ...
- Indian debit cards for billing?
Hey Appwrite team! 👋 I'm a developer from India building on Appwrite Cloud. Quick billing question: Does Appwrite accept **Indian debit cards** (Visa/Master...