diff --git a/src/navigation/SideNavigator.tsx b/src/navigation/SideNavigator.tsx
index 47742dd..cf654fe 100644
--- a/src/navigation/SideNavigator.tsx
+++ b/src/navigation/SideNavigator.tsx
@@ -1,20 +1,21 @@
-import { ChevronRight, Code, Grain, Memory, People, Person, SyncAlt, TapAndPlay } from "@mui/icons-material";
+import { ChevronRight, Code, Grain, HelpOutline, Memory, People, Person, SyncAlt, TapAndPlay } from "@mui/icons-material";
import ChevronLeft from "@mui/icons-material/ChevronLeft";
-import {
- darken,
- Divider,
- Grid2 as Grid,
- IconButton,
- lighten,
- List,
- ListItemButton,
- ListItemIcon,
- ListItemText,
- SwipeableDrawer,
- Theme,
- Toolbar,
- Tooltip,
- useTheme
+import {
+ Box,
+ darken,
+ Divider,
+ Grid2 as Grid,
+ IconButton,
+ lighten,
+ List,
+ ListItemButton,
+ ListItemIcon,
+ ListItemText,
+ SwipeableDrawer,
+ Theme,
+ Toolbar,
+ Tooltip,
+ useTheme
} from "@mui/material";
import classNames from "classnames";
import { useMobile, useWidth } from "../hooks/useWidth";
@@ -31,6 +32,7 @@ import PlaneIcon from "products/AviationIcons/PlaneIcon";
import AirportMapIcon from "products/AviationIcons/AirportMapIcon";
import JobsiteIcon from "products/Construction/JobSiteIcon";
import { getThemeType } from "theme";
+import { openCrispChat } from "chat/CrispChat";
import ObjectHeaterIcon from "products/Construction/ObjectHeaterIcon";
import TasksIcon from "products/Construction/TasksIcon";
import CableIcon from "products/Bindapt/CableIcon";
@@ -95,6 +97,7 @@ const useStyles = makeStyles((theme: Theme) => ({
listItem: {
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(2),
+ maxHeight: 40,
[theme.breakpoints.up("md")]: {
paddingLeft: theme.spacing(3),
paddingRight: theme.spacing(3)
@@ -529,23 +532,37 @@ export default function SideNavigator(props: Props) {
onClose={onClose}
sx={{ pointerEvents: isMobile&&!open ? "none" : "auto"}}
>
-
-
-
-
- {open
- ? theme.direction === "rtl" ? :
- : theme.direction === "rtl" ? : }
-
+
+
+
+
+
+ {open
+ ? theme.direction === "rtl" ? :
+ : theme.direction === "rtl" ? : }
+
+
-
-
-
- {/* {isAuthenticated || isOffline() ? authenticatedSideMenu() : unauthenticatedSideMenu()} */}
- {isAuthenticated && authenticatedSideMenu()}
+
+
+
+ {isAuthenticated && authenticatedSideMenu()}
+
+
+
+
+ openCrispChat()}>
+
+
+
+ {open && }
+
+
+
+
);
}