From 3a80bf702d9aae751ab13270234ca34da5abd6c0 Mon Sep 17 00:00:00 2001 From: Craig Kaiser Date: Sun, 6 Oct 2024 13:32:30 -0400 Subject: [PATCH] success toast --- src/routes/auth/+page.server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/auth/+page.server.ts b/src/routes/auth/+page.server.ts index bad9433..163b438 100644 --- a/src/routes/auth/+page.server.ts +++ b/src/routes/auth/+page.server.ts @@ -15,7 +15,7 @@ export const actions = { return fail(400, { form }); } - return { form, success: true }; + return message(form, 'Confirmation email sent to your email!'); }, signin: async ({ request, locals: { supabase } }) => {