diff --git a/apps/desktop/src/components/titlebar/controls/CaptionControlsWindows11.tsx b/apps/desktop/src/components/titlebar/controls/CaptionControlsWindows11.tsx index 397874a3..b4353d39 100644 --- a/apps/desktop/src/components/titlebar/controls/CaptionControlsWindows11.tsx +++ b/apps/desktop/src/components/titlebar/controls/CaptionControlsWindows11.tsx @@ -1,4 +1,4 @@ -import { ComponentProps, createEffect, JSX, Show, splitProps } from "solid-js"; +import { ComponentProps, JSX, Show, splitProps } from "solid-js"; import { WindowControlButton as ControlButton } from "./WindowControlButton"; import { getCurrentWindow } from "@tauri-apps/api/window"; import titlebarState from "~/utils/titlebar-state"; @@ -8,10 +8,6 @@ export default function (props: ComponentProps<"div">) { const [local, otherProps] = splitProps(props, ["class"]); const window = getCurrentWindow(); - createEffect(() => { - console.log(`Maximizable? ${titlebarState.maximizable}`); - }); - return (