summaryrefslogtreecommitdiffhomepage
path: root/packages/frontend/src/lib/components/ChatInput.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/lib/components/ChatInput.svelte')
-rw-r--r--packages/frontend/src/lib/components/ChatInput.svelte3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/frontend/src/lib/components/ChatInput.svelte b/packages/frontend/src/lib/components/ChatInput.svelte
index 9563a9f..8910bb4 100644
--- a/packages/frontend/src/lib/components/ChatInput.svelte
+++ b/packages/frontend/src/lib/components/ChatInput.svelte
@@ -29,9 +29,8 @@ function submit() {
bind:this={inputEl}
bind:value={inputValue}
type="text"
- placeholder={isDisabled ? "Agent is running..." : "Type a message..."}
+ placeholder="Type a message..."
class="input flex-1"
- disabled={isDisabled}
onkeydown={handleKeydown}
/>
<button