diff --git a/apps/desktop/src/components/main/sidebar/search/index.tsx b/apps/desktop/src/components/main/sidebar/search/index.tsx index d236316e06..39f9da674f 100644 --- a/apps/desktop/src/components/main/sidebar/search/index.tsx +++ b/apps/desktop/src/components/main/sidebar/search/index.tsx @@ -1,7 +1,5 @@ import { SearchXIcon } from "lucide-react"; -import { cn } from "@hypr/utils"; - import { type GroupedSearchResults, useSearch, diff --git a/plugins/windows/src/window/v1.rs b/plugins/windows/src/window/v1.rs index 251c5765b4..d9390de413 100644 --- a/plugins/windows/src/window/v1.rs +++ b/plugins/windows/src/window/v1.rs @@ -76,6 +76,11 @@ impl AppWindow { builder = builder.decorations(false); } + #[cfg(target_os = "linux")] + { + builder = builder.decorations(false); + } + builder } }