style: fix lint formatting

This commit is contained in:
Peter Steinberger
2026-01-03 18:51:25 +00:00
parent 9899ba53a3
commit 55a07a0ef0
4 changed files with 38 additions and 48 deletions

View File

@@ -2,9 +2,7 @@ export type BrowserControlServer = {
stop: () => Promise<void>;
};
export async function startBrowserControlServerIfEnabled(): Promise<
BrowserControlServer | null
> {
export async function startBrowserControlServerIfEnabled(): Promise<BrowserControlServer | null> {
if (process.env.CLAWDIS_SKIP_BROWSER_CONTROL_SERVER === "1") return null;
// Lazy import: keeps startup fast, but still bundles for the embedded
// gateway (bun --compile) via the static specifier path.