This commit is contained in:
MotorTruck1221 2024-10-26 04:18:03 -06:00
parent 0fae05e33a
commit 30509de370
No known key found for this signature in database
GPG key ID: 08F417E2B8B61EA4

View file

@ -57,7 +57,7 @@ import { VERSION } from "astro:env/client";
settings settings
} from "@utils/settings/index"; } from "@utils/settings/index";
import { search } from "@utils/search.ts"; //../../utils/search.ts import { search } from "@utils/search.ts"; //../../utils/search.ts
const libcurl = await import('@utils/libcurl'); import { client as libcurlClient } from "@utils/libcurl";
type Suggestion = { type Suggestion = {
phrase: string; phrase: string;
}; };
@ -195,5 +195,5 @@ import { VERSION } from "astro:env/client";
} }
} }
}); });
}, true); });
</script> </script>