Skip to content

Commit 7c7710e

Browse files
committed
Don't show input box and subscriptoin limit banner together
1 parent 34ac8ee commit 7c7710e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cli/src/components/chat-input-bar.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,11 @@ export const ChatInputBar = ({
190190
return <OutOfCreditsBanner />
191191
}
192192

193+
// Subscription limit mode: show only the limit banner (no input box)
194+
if (inputMode === 'subscriptionLimit') {
195+
return <InputModeBanner />
196+
}
197+
193198
// Handle input changes with special mode entry detection
194199
const handleInputChange = (value: InputValue) => {
195200
// Detect entering bash mode: user typed exactly '!' when in default mode

0 commit comments

Comments
 (0)