diff --git a/src/pages/partials/cards.astro b/src/pages/partials/cards.astro index 89daa85..e8afc37 100644 --- a/src/pages/partials/cards.astro +++ b/src/pages/partials/cards.astro @@ -1,7 +1,6 @@ --- import { client } from '../../db/typesense'; import RarityIcon from '../../components/RarityIcon.astro'; -import * as util from 'node:util'; export const prerender = false; @@ -81,7 +80,6 @@ const commonSearchParams = { // use typesense to search for cards matching the query and return the productIds of the results const searchResults = await client.multiSearch.perform(searchRequests, commonSearchParams); -console.log(util.inspect(searchResults.results[0], {depth: null})); const cardResults = searchResults.results[0] as any; const pokemon = cardResults.hits?.map((hit: any) => hit.document) ?? [];