From 3c6d4529e13af1d560bc8155fcb6bfad079a7f58 Mon Sep 17 00:00:00 2001 From: d-kimsuon Date: Mon, 1 Sep 2025 03:29:46 +0900 Subject: [PATCH] chore: fix biome lint error --- src/lib/api/client.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/api/client.ts b/src/lib/api/client.ts index 5964b42..1a529e5 100644 --- a/src/lib/api/client.ts +++ b/src/lib/api/client.ts @@ -3,6 +3,7 @@ import type { RouteType } from "../../server/hono/route"; export const honoClient = hc( typeof window === "undefined" - ? `http://localhost:${process.env.PORT ?? 3000}/` + ? // biome-ignore lint/complexity/useLiteralKeys: TypeScript restriction + `http://localhost:${process.env["PORT"] ?? 3000}/` : "/", );