feat: swap out analytics

This commit is contained in:
Cory Dransfeldt 2024-03-23 19:24:22 -07:00
parent a4fc73d653
commit a9f474aa9d
No known key found for this signature in database
15 changed files with 51 additions and 67 deletions

View file

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