Remove filter for bazel executable

Many people use bazel wrapper scripts that shell out to the correct
version of bazel, with possibly other logic. Because of this filtering
by `bazel` can be too restrictive.

Closes #81.

PiperOrigin-RevId: 235191955
diff --git a/src/Tulsi/BazelSelectionPanel.swift b/src/Tulsi/BazelSelectionPanel.swift
index e275b02..f19c30f 100644
--- a/src/Tulsi/BazelSelectionPanel.swift
+++ b/src/Tulsi/BazelSelectionPanel.swift
@@ -27,7 +27,6 @@
                                                           document: TulsiProjectDocument,
                                                           completionHandler: ((URL?) -> Void)? = nil) -> BazelSelectionPanel {
     let panel = BazelSelectionPanel()
-    panel.filterFunc = filterNonPackageDirectoriesOrFilesMatchingNames(["bazel"])
     panel.delegate = panel
     panel.message = NSLocalizedString("ProjectEditor_SelectBazelPathMessage",
                                       comment: "Message to show at the top of the Bazel selector sheet, explaining what to do.")