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
package.json
src/assets/scripts

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "8.6.1",
"version": "8.6.2",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {

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)
})