fix(auth): remove callback URL from email sign-in process on home page

This commit is contained in:
Mauricio Siu
2026-02-18 01:35:57 -06:00
parent 6c3230648a
commit be35709cea

View File

@@ -81,7 +81,6 @@ export default function Home({ IS_CLOUD }: Props) {
const { data, error } = await authClient.signIn.email({
email: values.email,
password: values.password,
callbackURL: "/dashboard/projects",
});
if (error) {