chore: search cleanup

This commit is contained in:
Cory Dransfeldt 2024-10-19 20:10:39 -07:00
parent 2fb4c362f3
commit 36f251e745
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -213,7 +213,7 @@ window.addEventListener("load", () => {
try {
const response = await fetch(
`https://localhost:8787/api/search?q=${query}&type=${typeQuery}&page=${page}&pageSize=${PAGE_SIZE}`
`https://coryd.dev/api/search?q=${query}&type=${typeQuery}&page=${page}&pageSize=${PAGE_SIZE}`
);
const index = await response.json();
const results = index.results || [];