From a6164d9afdc8f8bd25ddd4f91d03bd955d4786fa Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 14 Jan 2026 14:03:07 +0000 Subject: [PATCH] refactor: Remove header from pop-out command page Simplify RunCommandPage to only show the window renderer without any additional UI chrome. This provides a cleaner, more focused experience for popped-out windows. --- src/components/pages/RunCommandPage.tsx | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/src/components/pages/RunCommandPage.tsx b/src/components/pages/RunCommandPage.tsx index e9fe19c..94d228b 100644 --- a/src/components/pages/RunCommandPage.tsx +++ b/src/components/pages/RunCommandPage.tsx @@ -6,7 +6,6 @@ import { } from "@/lib/command-parser"; import { useGrimoire } from "@/core/state"; import { WindowRenderer } from "@/components/WindowRenderer"; -import { ExternalLink } from "lucide-react"; /** * RunCommandPage - Standalone command execution route @@ -87,9 +86,6 @@ export default function RunCommandPage() { ); } - const title = - parsed.globalFlags?.windowProps?.title || parsed.command.name.toUpperCase(); - // Construct a minimal WindowInstance for rendering const windowInstance = { id: "pop-out", @@ -100,25 +96,6 @@ export default function RunCommandPage() { }; return ( -
- {/* Header */} -
-
- -

{title}

-
-
- {parsed.fullInput} -
-
- - {/* Content */} -
- window.close()} - /> -
-
+ window.close()} /> ); }