Skip to content

Commit f63b4fd

Browse files
committed
⚠️ fix: warning / clippy
1 parent cf6cf07 commit f63b4fd

File tree

2 files changed

+106
-146
lines changed

2 files changed

+106
-146
lines changed

src/app.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,6 @@ impl App {
463463
|| self.fetch_popup.any_work_pending()
464464
|| self.revision_files_popup.any_work_pending()
465465
|| self.tags_popup.any_work_pending()
466-
|| self.conventional_commit_popup.any_work_pending()
467466
}
468467

469468
///
@@ -747,10 +746,10 @@ impl App {
747746
InternalEvent::Update(u) => flags.insert(u),
748747
InternalEvent::OpenCommit => self.commit_popup.show()?,
749748
InternalEvent::AddCommitMessage(s) => {
750-
self.commit_popup.set_msg(s)
749+
self.commit_popup.set_msg(s);
751750
}
752751
InternalEvent::OpenConventionalCommit => {
753-
self.conventional_commit_popup.show()?
752+
self.conventional_commit_popup.show()?;
754753
}
755754
InternalEvent::RewordCommit(id) => {
756755
self.commit_popup.open(Some(id))?;

0 commit comments

Comments
 (0)