fix: remove limit

This commit is contained in:
2025-11-22 22:20:49 +08:00
parent b1c01431fc
commit 0395bc4686

View File

@@ -3,10 +3,7 @@ import { Response } from "./models.ts";
const KunApi = { const KunApi = {
isAvailable(): boolean { isAvailable(): boolean {
return ( return true;
window.location.hostname === "res.nyne.dev" ||
window.location.hostname.startsWith("localhost")
);
}, },
async getPatch(id: string): Promise<Response<KunPatchResponse>> { async getPatch(id: string): Promise<Response<KunPatchResponse>> {