From be35709cea28a62f26b27d6c0cb2c42c3525f827 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 18 Feb 2026 01:35:57 -0600 Subject: [PATCH] fix(auth): remove callback URL from email sign-in process on home page --- apps/dokploy/pages/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/dokploy/pages/index.tsx b/apps/dokploy/pages/index.tsx index a778f50f4..d2ea83297 100644 --- a/apps/dokploy/pages/index.tsx +++ b/apps/dokploy/pages/index.tsx @@ -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) {