Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter275 committed Jun 24, 2024
1 parent 268ad49 commit b24c931
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -13,7 +14,6 @@ import {
SettingsIcon,
UsersIcon,
ZapIcon,
CpuIcon
} from "lucide-react";

export interface SidebarProps {
Expand Down Expand Up @@ -89,8 +89,8 @@ export const Sidebar = ({ children }: SidebarProps): JSX.Element => {
</Subtle>
</div>
<div className="flex items-center">
<CpuIcon size={24} viewBox={'0 0 36 24'}/>
<Subtle>v{ myMetadata?.firmwareVersion ?? "UNK"}</Subtle>
<CpuIcon size={24} viewBox={"0 0 36 24"} />
<Subtle>v{myMetadata?.firmwareVersion ?? "UNK"}</Subtle>
</div>
</div>

Expand All @@ -111,4 +111,3 @@ export const Sidebar = ({ children }: SidebarProps): JSX.Element => {
</div>
);
};

0 comments on commit b24c931

Please sign in to comment.