fix(tui): remove unwrap and replace with error log
This commit is contained in:
parent
26ffbb5411
commit
67380f6057
1 changed files with 1 additions and 1 deletions
|
@ -243,6 +243,6 @@ impl Tui {
|
|||
|
||||
impl Drop for Tui {
|
||||
fn drop(&mut self) {
|
||||
self.exit().unwrap();
|
||||
let _ = self.exit().inspect_err(|err| error!("Failed to exit Tui: {err}"));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue