We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ac8ee commit 7c7710eCopy full SHA for 7c7710e
cli/src/components/chat-input-bar.tsx
@@ -190,6 +190,11 @@ export const ChatInputBar = ({
190
return <OutOfCreditsBanner />
191
}
192
193
+ // Subscription limit mode: show only the limit banner (no input box)
194
+ if (inputMode === 'subscriptionLimit') {
195
+ return <InputModeBanner />
196
+ }
197
+
198
// Handle input changes with special mode entry detection
199
const handleInputChange = (value: InputValue) => {
200
// Detect entering bash mode: user typed exactly '!' when in default mode
0 commit comments