diff --git a/src/App.tsx b/src/App.tsx
index 164e5743..29e80aa1 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -10,11 +10,13 @@ import Footer from "@components/UI/Footer.tsx";
import { useAppStore } from "@core/stores/appStore.ts";
import { useDeviceStore } from "@core/stores/deviceStore.ts";
import { Dashboard } from "@pages/Dashboard/index.tsx";
+import type { JSX } from "react";
import { ErrorBoundary } from "react-error-boundary";
-import { ErrorPage } from "./components/UI/ErrorPage.tsx";
+import { ErrorPage } from "@components/UI/ErrorPage.tsx";
import { MapProvider } from "react-map-gl/maplibre";
-export const App = () => {
+
+export const App = (): JSX.Element => {
const { getDevice } = useDeviceStore();
const { selectedDevice, setConnectDialogOpen, connectDialogOpen } =
useAppStore();
@@ -35,23 +37,21 @@ export const App = () => {
- {device
- ? (
-
- )
- : (
- <>
-
-
- >
- )}
+ {device ? (
+
+ ) : (
+ <>
+
+
+ >
+ )}
diff --git a/src/PageRouter.tsx b/src/PageRouter.tsx
index ceff7bdb..f59cb6fe 100644
--- a/src/PageRouter.tsx
+++ b/src/PageRouter.tsx
@@ -5,7 +5,7 @@ import ConfigPage from "@pages/Config/index.tsx";
import MessagesPage from "@pages/Messages.tsx";
import NodesPage from "@pages/Nodes.tsx";
import { ErrorBoundary } from "react-error-boundary";
-import { ErrorPage } from "./components/UI/ErrorPage";
+import { ErrorPage } from "./components/UI/ErrorPage.tsx";
export const ErrorBoundaryWrapper = ({
children,
diff --git a/src/components/DeviceSelector.tsx b/src/components/DeviceSelector.tsx
index d53f5051..872b9c04 100644
--- a/src/components/DeviceSelector.tsx
+++ b/src/components/DeviceSelector.tsx
@@ -15,7 +15,6 @@ export const DeviceSelector = () => {
setCommandPaletteOpen,
setConnectDialogOpen,
} = useAppStore();
- console.log(import.meta.env.VITE_COMMIT_HASH);
return (