Skip to content

Commit

Permalink
chore: 🔨 remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrnoch committed Aug 21, 2023
1 parent 1316bba commit 46e5a5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/screens/Dashboard/components/Sidebar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import { Component, Show, createSignal } from "solid-js";
import { Component } from "solid-js";
import SidebarButton from "./Button";
import SidebarSection from "./Section";
import { useSelector } from "@/store";
import { useI18n } from "@/i18n";
import Popover from "@/shared/components/Popup";
//@ts-expect-error
import { Presence } from "@motionone/solid";
import { FiDollarSign, FiFileText, FiHome, FiSettings, FiUsers } from "solid-icons/fi";

const Sidebar: Component = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Dashboard/components/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Component, For, Show, createEffect, createSignal } from "solid-js";
import { Platform, platform } from "@tauri-apps/plugin-os";
import { useLocation } from "@solidjs/router";
import { useI18n } from "@/i18n";
import { FiBell, FiSearch, FiSettings, FiSidebar } from "solid-icons/fi";
import { FiBell, FiSearch, FiSidebar } from "solid-icons/fi";

const TitleBar: Component = () => {
const [os, setOs] = createSignal<Platform | null>(null);
Expand Down

0 comments on commit 46e5a5b

Please sign in to comment.