We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8032c35 commit 8448885Copy full SHA for 8448885
src/app.rs
@@ -694,7 +694,7 @@ impl App {
694
}
695
696
Action::ForcePush(branch, force) => {
697
- self.queue.push(InternalEvent::Push(branch, force))
+ self.queue.push(InternalEvent::Push(branch, force));
698
699
Action::PullMerge { rebase, .. } => {
700
self.pull_popup.try_conflict_free_merge(rebase);
src/tabs/status.rs
@@ -347,7 +347,7 @@ impl Status {
347
AsyncGitNotification::Push
348
| AsyncGitNotification::Fetch
349
| AsyncGitNotification::CommitFiles => {
350
- self.branch_compare()
+ self.branch_compare();
351
352
_ => (),
353
0 commit comments