mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-27 22:18:38 +00:00
chore: run format and fix sandbox browser timeouts
This commit is contained in:
@@ -238,7 +238,11 @@ export function registerConfigCli(program: Command) {
|
||||
defaultRuntime.log(JSON.stringify(res.value ?? null, null, 2));
|
||||
return;
|
||||
}
|
||||
if (typeof res.value === "string" || typeof res.value === "number" || typeof res.value === "boolean") {
|
||||
if (
|
||||
typeof res.value === "string" ||
|
||||
typeof res.value === "number" ||
|
||||
typeof res.value === "boolean"
|
||||
) {
|
||||
defaultRuntime.log(String(res.value));
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user