From 0395bc4686a18b61bf2518cfee499d951d3f830b Mon Sep 17 00:00:00 2001 From: nyne Date: Sat, 22 Nov 2025 22:20:49 +0800 Subject: [PATCH] fix: remove limit --- frontend/src/network/kun.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/network/kun.ts b/frontend/src/network/kun.ts index cc4ad88..2652fa9 100644 --- a/frontend/src/network/kun.ts +++ b/frontend/src/network/kun.ts @@ -3,10 +3,7 @@ import { Response } from "./models.ts"; const KunApi = { isAvailable(): boolean { - return ( - window.location.hostname === "res.nyne.dev" || - window.location.hostname.startsWith("localhost") - ); + return true; }, async getPatch(id: string): Promise> {