diff options
Diffstat (limited to 'src/components/forms')
-rw-r--r-- | src/components/forms/login_form.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/forms/login_form.tsx b/src/components/forms/login_form.tsx index a126d03..f08d2c5 100644 --- a/src/components/forms/login_form.tsx +++ b/src/components/forms/login_form.tsx @@ -1,5 +1,5 @@ import { Modal } from "flowbite"; -import LoginButton from "../login_button"; +import UserAccountButton from "../user_account_button"; import { useEffect, useState } from "react"; import { ApiClient } from "../../clients/api_client"; import Token from "../../lib/token"; @@ -48,8 +48,6 @@ export function LoginForm() { return( <> - <LoginButton/> - <div id="loginModal" tabIndex={-1} aria-hidden="true" className="fixed top-0 left-0 right-0 z-50 hidden w-full p-4 overflow-x-hidden overflow-y-auto md:inset-0 h-[calc(100%-1rem)] max-h-full"> <div className="relative w-full max-w-2xl max-h-full"> <div className="relative bg-white rounded-lg shadow dark:bg-gray-700"> |