korrupt10n
BABetter Auth
•Created by korrupt10n on 3/28/2025 in #help
Anyone have an idea what this bug is about
The inferred type of authClient cannot be named without a reference to ../../../../node_modules/better-auth/dist/shared/better-auth.Bi8FQwDD . This is likely not portable. A type annotation is necessary.
I have added dom to tsconfig, cleared my node_modules and cache, updated to better-auth: ^1.2.4, as well.
This is what I am trying to do, example from docs
import { createAuthClient } from "better-auth/react";
export const authClient = createAuthClient({
baseURL: import.meta.env.VITE_API_BASE_URL,
});
8 replies
BABetter Auth
•Created by korrupt10n on 3/24/2025 in #help
authClient.GetSessions() returning null for user data and session data
I have an issue where getsessions function of the authClient is returning null. I am trying to sign up/in a user with google. The auth flow seems to work ie I get a session, user and account stored in my database. I also get the onsuccess handler called after signIn. The issue is, the data is null ie const {data} = authClient.getSession(). I am trying to read the userid so I can send other requests to the database.
Here is my auth context handler: https://github.com/zessu/honoapp/blob/master/packages/frontend/src/authContext.tsx issue on line 22
Here is the backend Auth config
https://github.com/zessu/honoapp/blob/master/packages/backend/auth.ts
And here is the index route
https://github.com/zessu/honoapp/blob/master/packages/backend/index.ts
So, why is this null? Also, should I even be reading user information data e.g sessionId on the frontend or should I just read it from the server?
6 replies