diff --git a/src/app/components/Login/LoginButton.tsx b/src/app/components/Login/LoginButton.tsx index f40c03e..37b5b63 100644 --- a/src/app/components/Login/LoginButton.tsx +++ b/src/app/components/Login/LoginButton.tsx @@ -1,11 +1,11 @@ -import { Button } from "@mui/material"; +import { Box, Button } from "@mui/material"; import { useState } from "react"; import { LoginDialog } from "./LoginDialog"; export const LoginButton = () => { const [loginDialogOpen, setLoginDialogOpen] = useState(false); return ( - <> +