lexcodeit
lexcodeit
CCConvex Community
Created by lexcodeit on 3/14/2025 in #support-community
User document is deleted when I try to reset password
So I tried implementing reset password, I used the instructions in the doc. So I started by setting up resend and setting up my auth.ts. import { convexAuth } from "@convex-dev/auth/server"; import { Password } from "@convex-dev/auth/providers/Password"; import { internal } from "./_generated/api"; import { ResendOTPPasswordReset } from "./otp/ResendResetPassword"; export const { auth, signIn, signOut, store, isAuthenticated } = convexAuth({ providers: [ Password({ reset: ResendOTPPasswordReset, }), ], callbacks: { async afterUserCreatedOrUpdated(ctx, args) { const userId = args.userId; const user = await ctx.db.get(userId); if (!user) return console.log("No user found"); await ctx.runMutation(internal.services.auth.runUserAccountUpdate, { email: user.email, userId, }); }, }, }); But when I try to use the reset command in my code by sending a verification code, it deletes the user document. signIn("password", { email: values.email, flow: "reset", }) And when I try to request for OTP again, I get this error: "Could not update user document with ID jx71ve8bbf3c27qm0whh3ye0657a9ma2, either the user has been deleted but their account has not, or the profile data doesn't match the users table schema: Update on nonexistent document ID jx71ve8bbf3c27qm0whh3ye0657a9ma2" Please I have been on this for a couple of days. The whole convex auth is really difficult to manage
2 replies
CCConvex Community
Created by lexcodeit on 1/14/2025 in #support-community
const { isAuthenticated } = useConvexAuth(); does not refresh in React Native
Hey convex people, It would be very much appreciated if we have a guide for convex auth on react native. By guide, I mean the middleware setup for _layout files and handle the navigation properly for file base navigation in react native. It will go a long way to improve the structure of our apps because I have just been winging it and it doesn't feel right. Lately, const { isAuthenticated } = useConvexAuth(); This hook doesn't refresh whenever I login until I restart my app and it updates the current state. Please we really need a good guide for this. There's not much help out there for this and it used to work perfectly before. Really looking forward to this guide. It could be on the docs or on the stack blog session. Thank you
12 replies
CCConvex Community
Created by lexcodeit on 12/24/2024 in #support-community
Multiple Fields Names in Full Text Search
How can I add more fields to search index query both in schema creation and during the search. For example, .searchIndex("search_name", { searchField: "firstName", }). I would want to add the lastName as a search field too. Can I make it look like this .searchIndex("search_name", { searchField: ["firstName", "lastName], }) Or I would have to create another search index like this .searchIndex("search_name", { searchField: "firstName", }).searchIndex("search_name", { searchField: "firstName", }) And If I do this, How do I make the query in my convex backend? This is for single fields. .withSearchIndex("search_name", q => q.search("firstName", queryText) ) What would it look like for multiple fields?
5 replies
CCConvex Community
Created by lexcodeit on 12/5/2024 in #support-community
React Native Deployment
No description
11 replies
CCConvex Community
Created by lexcodeit on 10/1/2024 in #support-community
Error: {"code":"IdTokenExpired","message":"Expired: ID token expired at 2024-09-27 18:40:05 UTC
Please, How do I fix this? I can't reopen the app and I can't logout from my web app. Its really frustrating.
11 replies
CCConvex Community
Created by lexcodeit on 9/30/2024 in #support-community
Is there a way to get list of connected devices to the convex app?
For example, I created a nextjs app with convex and multiple users are using it. I'd like to show the users that are online or not. Is there a way to subscribe to this kind of event.
4 replies
CCConvex Community
Created by lexcodeit on 9/27/2024 in #support-community
Is there a way to share my functions and schemas across my project apart from a monorepo?
I'm creating an app that has mltiple interfaces but then I have to rewrite some convex functions in multiple places and I think there should be a better way to optimise this process. Probably like a pull command or something within the cli. I want to use a monorepo but the projects have been setup already and I don't know how to merge existing projects into a monorepo Thanks
5 replies