diff --git a/frontend/src/components/logoutButton.component.tsx b/frontend/src/components/logoutButton.component.tsx index 22e4134..ccde77b 100644 --- a/frontend/src/components/logoutButton.component.tsx +++ b/frontend/src/components/logoutButton.component.tsx @@ -1,4 +1,4 @@ -import { Button } from "@chakra-ui/react"; +import { Center } from "@chakra-ui/react"; import React from "react"; import axios from "../apis/axios"; import { useNavigate } from "react-router-dom"; @@ -27,9 +27,13 @@ function LogoutButton({ children }: { children: React.ReactNode }) { }; return ( - + ); }