From adae8b130baae9e2b2271a0784536beb37df326a Mon Sep 17 00:00:00 2001 From: wallace Date: Fri, 28 Nov 2025 15:40:39 +0900 Subject: [PATCH] =?UTF-8?q?login=20=EC=88=98=EC=A0=951?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/login/loginoption.tsx | 46 +---------------------------------- src/app/login/page.tsx | 2 +- 2 files changed, 2 insertions(+), 46 deletions(-) diff --git a/src/app/login/loginoption.tsx b/src/app/login/loginoption.tsx index e775f70..5fcf2c9 100644 --- a/src/app/login/loginoption.tsx +++ b/src/app/login/loginoption.tsx @@ -1,6 +1,5 @@ "use client"; import React from "react"; -import { useState } from "react"; type LoginOptionProps = { onClick?: () => void; @@ -14,48 +13,5 @@ export default function LoginOption({ loginErrorModalEnabled, setLoginErrorModalEnabled, }: LoginOptionProps) { - - const [isOpen, setIsOpen] = useState(false); - - - return ( -
- - {isOpen && ( -
-
- -
    -
  • -

    login error modal

    - -
  • -
-
-
- )} -
- ); + return null; } \ No newline at end of file diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index d1c9f50..abf794a 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -293,7 +293,7 @@ export default function LoginPage() { {/* 로그인 버튼 */}