diff --git a/src/main/kotlin/app/viewmodels/BranchesViewModel.kt b/src/main/kotlin/app/viewmodels/BranchesViewModel.kt index f1b1758..fa8d66f 100644 --- a/src/main/kotlin/app/viewmodels/BranchesViewModel.kt +++ b/src/main/kotlin/app/viewmodels/BranchesViewModel.kt @@ -40,6 +40,7 @@ class BranchesViewModel @Inject constructor( fun createBranch(branchName: String) = tabState.safeProcessing( refreshType = RefreshType.ONLY_LOG, + refreshEvenIfCrashes = true, ) { git -> branchesManager.createBranch(git, branchName) this.loadBranches(git)