Skip to content

Commit 173fa71

Browse files
committed
Remove console log
1 parent 1bd584c commit 173fa71

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/DocsSearchBar.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ class DocsSearchBar {
277277
// Given a list of hits returned by the API, will reformat them to be used in
278278
// a Hogan template
279279
static formatHits(receivedHits) {
280-
console.log("WESH")
281280
const clonedHits = utils.deepClone(receivedHits)
282281
const hits = clonedHits.map((hit) => {
283282
if (hit._formatted) {
@@ -303,7 +302,7 @@ class DocsSearchBar {
303302
groupedHits[level] = flattenedHits
304303
})
305304
groupedHits = utils.flattenAndFlagFirst(groupedHits, 'isCategoryHeader')
306-
console.log({ groupedHits });
305+
console.log({ groupedHits })
307306
// Translate hits into smaller objects to be send to the template
308307
return groupedHits.map((hit) => {
309308
const url = DocsSearchBar.formatURL(hit)

0 commit comments

Comments
 (0)