agent: Remove stray separator in edited files UI (#39237)

Release Notes:

- N/A
This commit is contained in:
Cole Miller
2025-09-30 20:12:45 +00:00
committed by GitHub
parent a701388cb7
commit 34ddf5466f
+4 -7
View File
@@ -3712,13 +3712,10 @@ impl AcpThreadView {
None
} else {
Some(
Label::new(format!(
"{separator}{}{separator}",
parent.display(path_style)
))
.color(Color::Muted)
.size(LabelSize::XSmall)
.buffer_font(cx),
Label::new(format!("{}{separator}", parent.display(path_style)))
.color(Color::Muted)
.size(LabelSize::XSmall)
.buffer_font(cx),
)
}
});