removed account button

This commit is contained in:
2025-08-12 14:31:10 -07:00
parent b4dd5b205d
commit 69529f77be
5 changed files with 38 additions and 36 deletions
+1 -2
View File
@@ -3,7 +3,6 @@ import RegionalMap from "./views/RegionalMap";
import Volcano from "./views/Volcano";
import Admin from "./views/Admin";
import Account from "./views/Account"
import Settings from "./views/Settings"
import Home from "./views/Home";
import { DASHBOARD_VIEWS } from "@/constants/viewKeys";
import { chakra } from "@chakra-ui/react";
@@ -23,7 +22,7 @@ export default function Canvas({...props}) {
{view === "volcano" && <Volcano />}
{view === "admin" && <Admin />}
{view === "account" && <Account />}
{view === "settings" && <Settings />}
{view === "settings" && <Personal />}
{view === "personal" && <Personal />}
{view === "security" && <Security />}
</chakra.div>