refactor: remove filtering of branches based on default target branch

This commit is contained in:
Kiril Videlov 2023-11-30 13:38:01 +01:00 committed by Kiril Videlov
parent ef6c6afa8a
commit 5008de035e

View File

@ -66,7 +66,6 @@ pub fn list_remote_branches(
.context("failed to convert branches")?
.into_iter()
.flatten()
.filter(|branch| branch.name.branch() != Some(default_target.branch.branch()))
.collect::<Vec<_>>();
Ok(remote_branches)