I see "`auth:store` type: signIn" on Convex, but nothing happens on the frontend (React Native)
Hi everyone! I'm running a self-hosted Convex instance, which seems to have partially working authentication.
For instance, when I sign up as a new user (I'm only using the basic email+password strategy), and I try to sign up again with the same email, I get an error saying that the email already exists.
However, after the successful sign up AND after trying to sign in, it seems that everything was fine on the BE / Convex side, but nothing happens on the mobile app. What could be wrong?
_layout.tsx
:
index.tsx
:
2 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
What I can also provide is this: when I call:
signIn("password", { email, password, flow: "signIn" })
,
the response object is:
{"signingIn": true}
But still nothing happens on the FE