session cookie not setting after signup

Hey folks here is the link to my current auth setup https://mystb.in/5609e26466b88cb244 I don't know why after I signup the session cookie is not setting session is creating in database
10 Replies
Ping
Ping6d ago
Are you testing this on localhost or production? Normally we save secure cookies only on production, so localhost doesn't have secure cookies. Not sure if that could relate to anything, but just throwing it out there
Aditya Kirad
Aditya KiradOP6d ago
localhost
Ping
Ping6d ago
@Aditya Kirad Your actions/auth.ts is the same as signup.tsx
Aditya Kirad
Aditya KiradOP6d ago
my bad in hurry I pasted the same code here is the action code
"use server";

import { parseWithZod } from "@conform-to/zod";
import { signinSchema, signupSchema } from "~/lib/schema/auth";
import { signInEmail, signUpEmail } from "~/server/auth";
import { APIError } from "better-auth/api";

export async function signup(prevState: unknown, formData: FormData) {
const submission = parseWithZod(formData, { schema: signupSchema });

if (submission.status !== "success") {
return submission.reply();
}

const { firstName, lastName, email, password } = submission.value;

try {
await signUpEmail({
body: {
name: `${firstName} ${lastName}`,
email,
password,
},
});
} catch (error) {
if (error instanceof APIError) {
return submission.reply({
fieldErrors: { email: ["Email already exists"] },
resetForm: false,
});
}
throw error;
}
}
"use server";

import { parseWithZod } from "@conform-to/zod";
import { signinSchema, signupSchema } from "~/lib/schema/auth";
import { signInEmail, signUpEmail } from "~/server/auth";
import { APIError } from "better-auth/api";

export async function signup(prevState: unknown, formData: FormData) {
const submission = parseWithZod(formData, { schema: signupSchema });

if (submission.status !== "success") {
return submission.reply();
}

const { firstName, lastName, email, password } = submission.value;

try {
await signUpEmail({
body: {
name: `${firstName} ${lastName}`,
email,
password,
},
});
} catch (error) {
if (error instanceof APIError) {
return submission.reply({
fieldErrors: { email: ["Email already exists"] },
resetForm: false,
});
}
throw error;
}
}
Ping
Ping6d ago
Hmm. I'm not too sure why this is happening.
Aditya Kirad
Aditya KiradOP6d ago
Then I think it's better for me to roll my own auth just like I used to do in Remix I chose better-auth already comes with credentials based auth and with next-auth I have customize it very much to get same functionality
bekacru
bekacru6d ago
remove useSecureCookies: true ande default cookie attirbutes as well
Aditya Kirad
Aditya KiradOP6d ago
can you please tell why setting default cookie attributes cause this issue
bekacru
bekacru6d ago
it doen'st casue an issue but it's already set for you to similar attribute by the lib. It's redudnant unless you want a custom attribute.
Aditya Kirad
Aditya KiradOP6d ago
yeah, I saw that those cookies attributes are already set by library but just because I am mentioning them in defaultCookieAttributes and setting useSecureCookie to true and due to that cookie is not setting then it's issue also why a secret is not setted to the cookie value In remix whenever I set a auth cookie a random value is added to after the actual value

Did you find this page helpful?