Skip to content

Commit c5fd259

Browse files
committed
fix(webapp): the composer placeholder goes quiet while the watch card is open
1 parent 0924f77 commit c5fd259

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

apps/webapp/app/components/dashboard-agent/DashboardAgentDraft.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ export function DashboardAgentDraft({
8383
onSubmit={() => submit(input)}
8484
onStop={() => {}}
8585
isStreaming={false}
86-
placeholderSuggestion={placeholderSuggestion}
86+
// With the card open the field goes quiet: two competing calls to
87+
// action in one block read as noise.
88+
placeholderSuggestion={watchCard ? undefined : placeholderSuggestion}
8789
context={
8890
<DashboardAgentContextBanner
8991
projectSlug={projectSlug}

0 commit comments

Comments
 (0)