assistant2: Remove single-letter variable name (#22618)

This PR removes a single-letter variable name in place of a full one,
for readability.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-01-03 12:04:07 -05:00 committed by GitHub
parent e5c3d5d626
commit a49e394e51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -283,12 +283,11 @@ impl ActiveThread {
.when_some(context, |parent, context| { .when_some(context, |parent, context| {
if !context.is_empty() { if !context.is_empty() {
parent.child( parent.child(
h_flex() h_flex().flex_wrap().gap_1().px_1p5().pb_1p5().children(
.flex_wrap() context
.gap_1() .iter()
.px_1p5() .map(|context| ContextPill::new(context.clone())),
.pb_1p5() ),
.children(context.iter().map(|c| ContextPill::new(c.clone()))),
) )
} else { } else {
parent parent