From 80f603e05654f1ffd02e3b77934626328e3a6784 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 28 Sep 2025 14:39:27 +0000 Subject: [PATCH] feat: Add Discord authentication --- src/pages/Auth.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/Auth.tsx b/src/pages/Auth.tsx index f4419744..c8ecf606 100644 --- a/src/pages/Auth.tsx +++ b/src/pages/Auth.tsx @@ -120,7 +120,7 @@ export default function Auth() { } }; - const handleSocialSignIn = async (provider: 'google' | 'github') => { + const handleSocialSignIn = async (provider: 'google' | 'discord') => { try { const { error } = await supabase.auth.signInWithOAuth({ provider, @@ -252,13 +252,13 @@ export default function Auth() {