Skip to content

Commit

Permalink
chore: remove unnecessary console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
krlvi committed Jan 27, 2024
1 parent d910271 commit 8671463
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
hideBots
});
const filteredBySearch = filterByText(filteredByType, search);
console.log(branches);
return hideInactive ? filterInactive(filteredBySearch) : filteredBySearch;
}
);
Expand Down Expand Up @@ -94,7 +93,6 @@
}
function filterByText(branches: CombinedBranch[], search: string | undefined) {
console.log(search);
if (search == undefined) return branches;
return branches.filter((b) => b.displayName.includes(search));
}
Expand Down

0 comments on commit 8671463

Please sign in to comment.