agent2: Tweak usage callout border (#36777)

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2025-08-23 00:35:26 +02:00 committed by Joseph T. Lyons
parent 7e2a20878b
commit a422082b54

View file

@ -86,10 +86,6 @@ impl RenderOnce for UsageCallout {
(IconName::Warning, Severity::Warning)
};
div()
.border_t_1()
.border_color(cx.theme().colors().border)
.child(
Callout::new()
.icon(icon)
.severity(severity)
@ -102,7 +98,6 @@ impl RenderOnce for UsageCallout {
.on_click(move |_, _, cx| {
cx.open_url(&url);
}),
),
)
.into_any_element()
}