Skip to content

Commit

Permalink
Remove stray log
Browse files Browse the repository at this point in the history
  • Loading branch information
somebody1234 committed Feb 23, 2024
1 parent d9478a9 commit 73dd9b9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/gui2/src/components/ComponentBrowser/filtering.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,7 @@ class FilteringWithPattern {
private firstMatchingAlias(entry: SuggestionEntry) {
for (const alias of entry.aliases) {
const match = this.wordMatchRegex.exec(alias) ?? this.initialsMatchRegex?.exec(alias)
if (match != null) {
console.log(entry.aliases, alias)
return { alias, match }
}
if (match != null) return { alias, match }
}
return null
}
Expand Down

0 comments on commit 73dd9b9

Please sign in to comment.