Compare commits

...

1 Commits

Author SHA1 Message Date
itsababseh
4f4d0d8ee9 fix(frontend): add AutoGPT to password reset email title 2025-08-20 02:28:19 +01:00

View File

@@ -28,6 +28,7 @@ export async function sendResetEmail(email: string, turnstileToken: string) {
const { error } = await supabase.auth.resetPasswordForEmail(email, {
redirectTo: `${origin}/api/auth/callback/reset-password`,
data: { title: "AutoGPT Reset Password" },
});
if (error) {