mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-28 15:01:41 +03:00
style: biome formatting
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user