From 094b1aafc0d971c5890db3a925449c88d535b314 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Fri, 30 Jan 2026 09:59:24 +0100 Subject: [PATCH] [dyad] Removed custom auth provider to fix build - wrote 1 file(s) --- src/app/login/page.tsx | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 5619600..2ac205b 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -5,8 +5,6 @@ import { Auth } from "@supabase/auth-ui-react"; import { ThemeSupa } from "@supabase/auth-ui-shared"; import { useEffect } from "react"; import { useRouter } from "next/navigation"; -import { Button } from "@/components/ui/button"; -import { KeyRound } from "lucide-react"; import type { AuthChangeEvent, Session } from "@supabase/supabase-js"; export default function LoginPage() { @@ -22,12 +20,6 @@ export default function LoginPage() { return () => subscription.unsubscribe(); }, [router]); - const handleOidcSignIn = async () => { - await supabase.auth.signInWithOAuth({ - provider: 'pocket_id', - }); - }; - return (
@@ -41,22 +33,8 @@ export default function LoginPage() { providers={[]} theme="dark" view="sign_in" - showLinks={false} + showLinks={true} /> -
-
- -
-
- - Or continue with - -
-
-
);