fixed the styling on the home marker

This commit is contained in:
csawatzky 2025-03-27 15:08:37 -06:00
parent d8b42c8050
commit 6755764c75
3 changed files with 10 additions and 6 deletions

View file

@ -8,6 +8,7 @@ import { ErrorBoundary } from "react-error-boundary";
import { getWhitelabel } from "services/whiteLabel";
import Ventilation from "pages/VentEditor";
import FieldMap from "pages/FieldMap";
import GrainBag from "pages/grainBag";
const DeviceHistory = lazy(() => import("pages/DeviceHistory"));
const DevicePage = lazy(() => import("pages/Device"));
@ -222,6 +223,7 @@ export default function Router(props: Props) {
<Route path="users" element={<Users/>} />
<Route path="visualFarm" element={<FieldMap />} />
<Route path="/logout" element={<Logout />} />
<Route path="grainbags/:bagID" element={<GrainBag />} />
{/*
<ErrorBoundary FallbackComponent={ErrorFallback}>
<Route path="*" element={<RelativeRoutes/>} />