style: biome formatting

This commit is contained in:
Peter Steinberger
2025-12-21 13:58:27 +00:00
parent b56d4b90ce
commit 4f3a3e93a9
3 changed files with 10 additions and 15 deletions

View File

@@ -17,8 +17,7 @@ let state: BrowserServerState | null = null;
const log = createSubsystemLogger("browser");
const logServer = log.child("server");
export async function startBrowserControlServerFromConfig(
): Promise<BrowserServerState | null> {
export async function startBrowserControlServerFromConfig(): Promise<BrowserServerState | null> {
if (state) return state;
const cfg = loadConfig();
@@ -70,8 +69,7 @@ export async function startBrowserControlServerFromConfig(
return state;
}
export async function stopBrowserControlServer(
): Promise<void> {
export async function stopBrowserControlServer(): Promise<void> {
const current = state;
if (!current) return;