diff --git a/orchestrator/src/client/components/ghostwriter/GhostwriterDrawer.tsx b/orchestrator/src/client/components/ghostwriter/GhostwriterDrawer.tsx index eeee66a..0fb406f 100644 --- a/orchestrator/src/client/components/ghostwriter/GhostwriterDrawer.tsx +++ b/orchestrator/src/client/components/ghostwriter/GhostwriterDrawer.tsx @@ -26,24 +26,27 @@ export const GhostwriterDrawer: React.FC = ({ const [open, setOpen] = useState(false); return ( - + -
+
Ghostwriter @@ -52,13 +55,12 @@ export const GhostwriterDrawer: React.FC = ({ message. + {job && ( +
+ +
+ )}
- - {job && ( -
- -
- )} ); diff --git a/orchestrator/src/client/pages/orchestrator/JobDetailPanel.tsx b/orchestrator/src/client/pages/orchestrator/JobDetailPanel.tsx index 1cab007..06dfe94 100644 --- a/orchestrator/src/client/pages/orchestrator/JobDetailPanel.tsx +++ b/orchestrator/src/client/pages/orchestrator/JobDetailPanel.tsx @@ -39,7 +39,6 @@ import { JobHeader, TailoredSummary, } from "../../components"; -import { GhostwriterDrawer } from "../../components/ghostwriter/GhostwriterDrawer"; import { JobDetailsEditDrawer } from "../../components/JobDetailsEditDrawer"; import { ReadyPanel } from "../../components/ReadyPanel"; import { TailoringEditor } from "../../components/TailoringEditor"; @@ -311,33 +310,23 @@ export const JobDetailPanel: React.FC = ({ if (activeTab === "discovered") { return ( -
-
- -
- -
+ ); } if (activeTab === "ready") { return ( -
-
- -
- -
+ ); }