Didi
Didi
Explore posts from servers
BABetter Auth
Created by Didi on 3/14/2025 in #help
Maintaining session in a webview.
I'm building an expo app with a nextjs companion app. There are some components that are not available in the react native world and I'm consuming them through a web view. The page that is consumed uses client and server side trpc calls to fetch data/ mutate. Is it possible for me to maintain the session from the expo side inside the nextjs page? On expo i have this

const cookies = authClient.getCookie();
const newSource = {
headers: { Cookie: cookies },
uri: `${getBaseUrl()}/flow/${today}`,
};

const cookies = authClient.getCookie();
const newSource = {
headers: { Cookie: cookies },
uri: `${getBaseUrl()}/flow/${today}`,
};
On the next js I'm consuming the cookie with
const session = await auth.api.getSession({
headers: headers(),
});
const session = await auth.api.getSession({
headers: headers(),
});
The initial data is fetched, but any client side calls failed with unauthorized issues. Am I trying to achieve something unachievable here?
1 replies
DTDrizzle Team
Created by Didi on 5/26/2023 in #help
Int to Float or Double db:push
Hi we are working on a project that has drizzle db connected to a planetscale database. We initially had a column as an integer, but we later on decided that the column should be a float or a double. Doing a db:push truncates the column and deletes all the rows of the table. Is this a bug or is it like that by design? If it's by design what is the best way to update the columns to a double without wiping the table? Thanks in advance.
4 replies