diff --git a/frontend/src/Account.tsx b/frontend/src/Account.tsx deleted file mode 100644 index d1ecfc0f..00000000 --- a/frontend/src/Account.tsx +++ /dev/null @@ -1,97 +0,0 @@ -import React from "react"; -import { observer } from "mobx-react-lite"; -import { useAuthContext } from "./context/auth/authContext"; -import Profile from "./Profile"; - -/** - * Account page that renders the Profile component as a nested child - * Provides navigation options for the user to logout, or continue into the app. - */ -const Account = observer(() => { - const { user } = useAuthContext(); - - return ( -