
I'm following a youtube tutorial: https://www.youtube.com/watch?v=ZBCUegTZF7M&t=7635s&ab_channel=JavaScriptMastery
and am gettin this error.
My instinct is to add Guest role, but the tutorial doesn't specify doing so in order to log in.
Any help would be appreciated.

In my Storage
settings is the only permissions where I'm setting guest role

User is already created in database, but trying to sign in results in this error

Here's my code:
// Sign In
export async function signIn(email, password) {
try {
const session = await account.createEmailSession(
email,
password
);
return session;
} catch (error) {
throw new Error(error);
}
}
Recommended threads
- Storage & Database is not allowing.
Storage & Database is not allowing to CRUD after i have logged in ? Using web SDK with next.js without any SSR or node-sdk.
- API Endpoint to Verify Password.
I have 2 use cases where i need to verify a users password outside of login, e.g. Updating user account data (such as name, or prefs, or data in a users databa...
- login backend and frontend
I'm using Remix, as my Backend (node). and react on my frontend. Until now, i did SSR login. saved the secret.. and it's fine. For many simpler requests i wish...
