chore: fixed wrong imports and deleted some

unnecessary prints.

ref: N25B-142
This commit is contained in:
Björn Otgaar
2025-10-08 14:35:20 +02:00
parent ec4f45b984
commit 72d61e3985
2 changed files with 5 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import { Routes, Route, Link } from 'react-router'
import { useState, useEffect } from 'react'
import { useState } from 'react'
import './App.css'
import TemplatePage from './pages/TemplatePage/Template.tsx'
import Home from './pages/Home/Home.tsx'
@@ -17,6 +17,7 @@ function App(){
port: number;
};
// (Acces to) the array of connected robots
const [connectedRobots, setConnectedRobots] = useState<Robot[]>([]);
return (