fixed ImgIcon not quite centering things properly

This commit is contained in:
Carter 2025-03-18 13:09:31 -06:00
parent 3e1e65ad88
commit 4f80c36c8c
2 changed files with 21 additions and 14 deletions

View file

@ -24,12 +24,12 @@ import { Link, useLocation } from "react-router-dom";
import BinsIcon from "products/Bindapt/BinsIcon";
import { useGlobalState } from "providers";
import {
hasTutorialPlaylist,
IsAdaptiveAgriculture,
IsAdCon,
isBXT,
// hasTutorialPlaylist,
// IsAdaptiveAgriculture,
// IsAdCon,
// isBXT,
IsMiVent,
IsOmniAir
// IsOmniAir
} from "services/whiteLabel";
import MiningIcon from "products/ventilation/MiningIcon";
import { useAuth0 } from "@auth0/auth0-react";
@ -235,7 +235,7 @@ export default function SideNavigator(props: Props) {
</Toolbar>
<Divider />
{/* {isAuthenticated || isOffline() ? authenticatedSideMenu() : unauthenticatedSideMenu()} */}
{isAuthenticated && authenticatedSideMenu()}
{isAuthenticated && authenticatedSideMenu()}
</SwipeableDrawer>
);
}