diff --git a/crates/gitbutler-core/src/virtual_branches/base.rs b/crates/gitbutler-core/src/virtual_branches/base.rs
index 468a761d9..be39546f1 100644
--- a/crates/gitbutler-core/src/virtual_branches/base.rs
+++ b/crates/gitbutler-core/src/virtual_branches/base.rs
@@ -362,197 +362,193 @@ pub fn update_base_branch(
let vb_state = VirtualBranchesHandle::new(&project_repository.project().gb_dir());
// try to update every branch
- let updated_vbranches =
- super::get_status_by_branch(project_repository, Some(&new_target_commit.id()))?
- .0
- .into_iter()
- .map(|(branch, _)| branch)
- .map(
- |mut branch: branch::Branch| -> Result