feat: removed the temporary access to MP from Home

ref: N25B-398
This commit is contained in:
Tuurminator69
2026-01-05 17:41:36 +01:00
parent 9601f56ea9
commit 0fefefe7f0
2 changed files with 0 additions and 3 deletions

View File

@@ -7,7 +7,6 @@ import ConnectedRobots from './pages/ConnectedRobots/ConnectedRobots.tsx'
import VisProg from "./pages/VisProgPage/VisProg.tsx";
import {useState} from "react";
import Logging from "./components/Logging/Logging.tsx";
import MonitoringPage from './pages/MonitoringPage/MonitoringPage.tsx'
function App(){
const [showLogs, setShowLogs] = useState(false);
@@ -26,7 +25,6 @@ function App(){
<Route path="/editor" element={<VisProg />} />
<Route path="/robot" element={<Robot />} />
<Route path="/ConnectedRobots" element={<ConnectedRobots />} />
<Route path="/MonitoringPage" element={<MonitoringPage />} />
</Routes>
</main>
{showLogs && <Logging />}