fix clippy suggestions
All checks were successful
/ Quality Check (push) Successful in 1m33s
/ Build (push) Successful in 1m41s

This commit is contained in:
Phani Pavan K
2025-09-20 07:02:56 +05:30
parent b334ffabac
commit 1934c869a7
3 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ pub fn ui(frame: &mut Frame, app: &AppState) {
let mut currentItems = Vec::<ListItem>::new();
for (i, e) in app.entries.iter().enumerate() {
currentItems.push(ListItem::new(Line::from(Span::styled(
format!("{}. {}", i, e),
format!("{i}. {e}"),
Style::default().fg(Color::Yellow),
))));
}