chore: fix biome lint error

This commit is contained in:
d-kimsuon
2025-09-01 03:29:46 +09:00
parent 23d541d158
commit 3c6d4529e1

View File

@@ -3,6 +3,7 @@ import type { RouteType } from "../../server/hono/route";
export const honoClient = hc<RouteType>(
typeof window === "undefined"
? `http://localhost:${process.env.PORT ?? 3000}/`
? // biome-ignore lint/complexity/useLiteralKeys: TypeScript restriction
`http://localhost:${process.env["PORT"] ?? 3000}/`
: "/",
);