style: format v0.8.34 PR integrations

This commit is contained in:
Hunter Bown
2026-05-12 23:14:49 -05:00
parent 88b7882d48
commit a415359577
5 changed files with 13 additions and 8 deletions
+1 -1
View File
@@ -90,4 +90,4 @@ apps/
.claude/codemap_*
# Maintainer-internal design notes (trade-secret material, never published)
.private/
.private/
+1 -1
View File
@@ -2372,4 +2372,4 @@ mod tests {
}
out
}
}
}
+1 -1
View File
@@ -373,4 +373,4 @@ mod tests {
ranks.dedup();
assert_eq!(ranks.len(), sections.len(), "ranks must be unique");
}
}
}
+9 -3
View File
@@ -1408,9 +1408,15 @@ async fn run_event_loop(
let persisted = app
.current_session_id
.as_deref()
.and_then(|id| SessionManager::default_location().ok()?.load_session(id).ok())
.and_then(|id| {
SessionManager::default_location()
.ok()?
.load_session(id)
.ok()
})
.map(|s| s.metadata.title);
app.session_title = persisted.or_else(|| derive_session_title(&app.api_messages));
app.session_title =
persisted.or_else(|| derive_session_title(&app.api_messages));
}
}
EngineEvent::CompactionStarted { message, .. } => {
@@ -9806,4 +9812,4 @@ fn extract_reasoning_header(text: &str) -> Option<String> {
}
#[cfg(test)]
mod tests;
mod tests;
+1 -2
View File
@@ -659,8 +659,7 @@ impl Renderable for ComposerWidget<'_> {
));
}
if !right_spans.is_empty() {
block = block
.title_top(Line::from(right_spans).right_aligned());
block = block.title_top(Line::from(right_spans).right_aligned());
}
}
if let Some(hint_line) = hint_line {