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 GitHub
parent 91b2a84001
commit bc566fe18e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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()
}