Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

search: Remove superfluous console.log statement #23263

Merged
merged 1 commit into from
Jul 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion client/web/src/search/results/sidebar/SearchReference.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,6 @@ interface SearchReferenceExampleProps {
const SearchReferenceExample: React.FunctionComponent<SearchReferenceExampleProps> = ({ example, onClick }) => {
// All current examples are literal queries
const scanResult = scanSearchQuery(example, false, SearchPatternType.literal)
console.log(scanResult)
// We only use valid queries as examples, so this will always be true
if (scanResult.type === 'success') {
return (
Expand Down