From b24c9312c490f71cef1d426d477e50783acacacc Mon Sep 17 00:00:00 2001 From: Hunter Thornsberry Date: Sun, 23 Jun 2024 20:15:33 -0400 Subject: [PATCH] linting fixes --- src/components/Sidebar.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index ef61a0cc..96d820bb 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -5,6 +5,7 @@ import { useDevice } from "@core/stores/deviceStore.js"; import type { Page } from "@core/stores/deviceStore.js"; import { BatteryMediumIcon, + CpuIcon, EditIcon, LayersIcon, type LucideIcon, @@ -13,7 +14,6 @@ import { SettingsIcon, UsersIcon, ZapIcon, - CpuIcon } from "lucide-react"; export interface SidebarProps { @@ -89,8 +89,8 @@ export const Sidebar = ({ children }: SidebarProps): JSX.Element => {
- - v{ myMetadata?.firmwareVersion ?? "UNK"} + + v{myMetadata?.firmwareVersion ?? "UNK"}
@@ -111,4 +111,3 @@ export const Sidebar = ({ children }: SidebarProps): JSX.Element => { ); }; -