diff --git a/crates/chat-cli-ui/src/conduit.rs b/crates/chat-cli-ui/src/conduit.rs index 7445e65895..e347b9da30 100644 --- a/crates/chat-cli-ui/src/conduit.rs +++ b/crates/chat-cli-ui/src/conduit.rs @@ -298,7 +298,7 @@ impl std::io::Write for ControlEnd { if byte == &10 || byte == &13 { if self.current_event.is_none() { self.current_event - .replace(Event::LegacyPassThrough(LegacyPassThroughOutput::Stderr( + .replace(Event::LegacyPassThrough(LegacyPassThroughOutput::Stdout( Default::default(), ))); } @@ -323,7 +323,7 @@ impl std::io::Write for ControlEnd { if start < end { if self.current_event.is_none() { self.current_event - .replace(Event::LegacyPassThrough(LegacyPassThroughOutput::Stderr( + .replace(Event::LegacyPassThrough(LegacyPassThroughOutput::Stdout( Default::default(), ))); }