From f117d78baf46aa39948050f8c7d378fd9eac6f89 Mon Sep 17 00:00:00 2001 From: lakshit verma Date: Wed, 19 Aug 2026 22:05:20 +0530 Subject: [PATCH] fix(frontend): keep the copilot overlay full-width so the drawer renders on desktop The overlay used 'fixed inset-0 lg:left-auto', which lets the container shrink-to-fit on desktop and collapse the drawer to a sliver (or nothing), so the open state changed but nothing was visible. Drop left:auto and hide the overlay fully when closed (visibility + pointer-events). --- frontend/src/features/copilot/CopilotPanel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/features/copilot/CopilotPanel.tsx b/frontend/src/features/copilot/CopilotPanel.tsx index 655fe7b..fa25baa 100644 --- a/frontend/src/features/copilot/CopilotPanel.tsx +++ b/frontend/src/features/copilot/CopilotPanel.tsx @@ -67,8 +67,8 @@ export function CopilotPanel({ open, onClose }: { open: boolean; onClose: () => return (