From f82c2de30144c837d9cfc93597987f468dbee981 Mon Sep 17 00:00:00 2001 From: MotorTruck1221 Date: Tue, 7 Jan 2025 00:05:55 -0700 Subject: [PATCH] . --- src/pages/[lang]/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro index 490f2ba..641caca 100644 --- a/src/pages/[lang]/index.astro +++ b/src/pages/[lang]/index.astro @@ -114,7 +114,7 @@ import { VERSION } from "astro:env/client"; input.classList.remove("rounded-b-2xl"); const data = await bc.fetch(`https://api.duckduckgo.com/ac?q=${encodeURIComponent(input.value)}&format=json`); const res = await data.json(); - const fData = res.slice(0, 6); // Trim to only the first 8 results. + const fData = res.slice(0, 6); // Trim to only the first 6 results. if (fData.length <= 0) { omnibox.classList.add("hidden"); input.classList.add("rounded-b-2xl");