acp: Hide feedback buttons for external agents (#36630)

Release Notes:

- N/A
This commit is contained in:
Agus Zubiaga 2025-08-20 18:35:48 -03:00 committed by Joseph T. Lyons
parent 1ee07a4baf
commit 8e57f633d0

View file

@ -3815,7 +3815,11 @@ impl AcpThreadView {
.flex_wrap() .flex_wrap()
.justify_end(); .justify_end();
if AgentSettings::get_global(cx).enable_feedback { if AgentSettings::get_global(cx).enable_feedback
&& self
.thread()
.is_some_and(|thread| thread.read(cx).connection().telemetry().is_some())
{
let feedback = self.thread_feedback.feedback; let feedback = self.thread_feedback.feedback;
container = container.child( container = container.child(
div().visible_on_hover("thread-controls-container").child( div().visible_on_hover("thread-controls-container").child(