This commit is contained in:
Darren Clarke 2024-03-20 17:51:21 +01:00
parent b8c6e893ff
commit b09cc82544
167 changed files with 2196 additions and 1302 deletions

View file

@ -20,8 +20,8 @@ import {
import Link from "next/link";
import { usePathname } from "next/navigation";
import { useTranslate } from "react-polyglot";
import { useAppContext } from "leafcutter-common/components/AppProvider";
import { Tooltip } from "leafcutter-common";
import { useLeafcutterContext } from "leafcutter-ui/components/LeafcutterProvider";
import { Tooltip } from "leafcutter-ui";
// import { ArrowCircleRight as ArrowCircleRightIcon } from "@mui/icons-material";
const MenuItem = ({
@ -43,7 +43,7 @@ const MenuItem = ({
}) => {
const {
colors: { leafcutterLightBlue, black },
} = useAppContext();
} = useLeafcutterContext();
return (
<Link href={href} passHref>
@ -105,7 +105,7 @@ export const Sidebar: FC<SidebarProps> = ({ open }) => {
const section = pathname?.split("/")[1];
const {
colors: { white }, // leafcutterElectricBlue, leafcutterLightBlue,
} = useAppContext();
} = useLeafcutterContext();
// const [recentUpdates, setRecentUpdates] = useState([]);