clippy fixes
All checks were successful
/ Quality Check (push) Successful in 1m3s
/ Build (push) Successful in 1m10s

This commit is contained in:
Phani Pavan K
2025-10-26 12:24:54 +05:30
parent f83d6038c8
commit 1b8275c911
3 changed files with 7 additions and 10 deletions

View File

@@ -16,10 +16,8 @@ pub fn getExitPara() -> Paragraph<'static> {
Line::from("ANY UNSAVED CHANGES WILL BE DISCARDED."),
Line::from("Press (s) to save from the main screen."),
]);
let exitPara = Paragraph::new(exitText)
Paragraph::new(exitText)
.block(exitPopup)
.wrap(Wrap { trim: false })
.style(Style::default().fg(Color::White));
exitPara
.style(Style::default().fg(Color::White))
}