fix: check

This commit is contained in:
Cory Dransfeldt 2024-03-24 08:21:43 -07:00
parent 7e0259aafd
commit 370860ee13
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@
const query = $input.value
const results = (query.length > 1) ? getSearchResults(query) : []
if (query === '') renderSearchResults([])
if (results && fathom) fathom?.trackEvent(`Search query: ${query}`)
if (results && window.fathom) fathom?.trackEvent(`Search query: ${query}`)
renderSearchResults(results)
})