Skip to content

Commit 52ac1e7

Browse files
committed
Fix forgotten debug logs
1 parent 6c5616c commit 52ac1e7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

components/dashboard/src/data/git-providers/unified-repositories-search-query.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,12 @@ export function deduplicateAndFilterRepositories(
128128
if (results.length === 0) {
129129
// If the searchString is a URL, and it's not present in the proposed results, "artificially" add it here.
130130
if (isValidGitUrl(searchString)) {
131-
console.log("It's valid man");
132131
results.push(
133132
new SuggestedRepository({
134133
url: searchString,
135134
}),
136135
);
137136
}
138-
139-
console.log("Valid after man");
140137
}
141138

142139
// Limit what we show to 200 results

0 commit comments

Comments
 (0)