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() { {/* 로그인 버튼 */}