From 96558114065df8c809eeb1616f3779c80da48e3b Mon Sep 17 00:00:00 2001 From: FlowerRealm Date: Sun, 2 Aug 2026 18:49:55 -0700 Subject: [PATCH 1/2] fix(composer): cover text leak below input card with background The composer floats over the transcript. Content scrolling past it shows through the 16px gap between the card's bottom edge and the app's bottom border, so text visibly leaks out below the input box. Cover that strip with a background-colored, pointer-events-none layer. --- .../agent-gui/src/pages/chat/components/ChatComposerBar.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/agent-gui/src/pages/chat/components/ChatComposerBar.tsx b/crates/agent-gui/src/pages/chat/components/ChatComposerBar.tsx index 1d03b5fdd..37f15b211 100644 --- a/crates/agent-gui/src/pages/chat/components/ChatComposerBar.tsx +++ b/crates/agent-gui/src/pages/chat/components/ChatComposerBar.tsx @@ -572,6 +572,11 @@ export const ChatComposerBar = memo(function ChatComposerBar(props: { isComposerExpanded && "top-14", )} > +
Date: Mon, 3 Aug 2026 06:47:53 -0700 Subject: [PATCH 2/2] chore: verify PR CI trigger