style: fix biome formatting
This commit is contained in:
@@ -6,9 +6,9 @@ import { detectMime } from "../media/mime.js";
|
|||||||
import { startWebLoginWithQr, waitForWebLogin } from "../web/login-qr.js";
|
import { startWebLoginWithQr, waitForWebLogin } from "../web/login-qr.js";
|
||||||
import {
|
import {
|
||||||
type BashToolDefaults,
|
type BashToolDefaults,
|
||||||
type ProcessToolDefaults,
|
|
||||||
createBashTool,
|
createBashTool,
|
||||||
createProcessTool,
|
createProcessTool,
|
||||||
|
type ProcessToolDefaults,
|
||||||
} from "./bash-tools.js";
|
} from "./bash-tools.js";
|
||||||
import { createClawdisTools } from "./clawdis-tools.js";
|
import { createClawdisTools } from "./clawdis-tools.js";
|
||||||
import { sanitizeToolResultImages } from "./tool-images.js";
|
import { sanitizeToolResultImages } from "./tool-images.js";
|
||||||
|
|||||||
@@ -243,7 +243,9 @@ export function registerGatewayCli(program: Command) {
|
|||||||
authMode || opts.password || authModeRaw
|
authMode || opts.password || authModeRaw
|
||||||
? {
|
? {
|
||||||
mode: authMode ?? undefined,
|
mode: authMode ?? undefined,
|
||||||
password: opts.password ? String(opts.password) : undefined,
|
password: opts.password
|
||||||
|
? String(opts.password)
|
||||||
|
: undefined,
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
tailscale:
|
tailscale:
|
||||||
@@ -437,7 +439,9 @@ export function registerGatewayCli(program: Command) {
|
|||||||
authMode || opts.password || authModeRaw
|
authMode || opts.password || authModeRaw
|
||||||
? {
|
? {
|
||||||
mode: authMode ?? undefined,
|
mode: authMode ?? undefined,
|
||||||
password: opts.password ? String(opts.password) : undefined,
|
password: opts.password
|
||||||
|
? String(opts.password)
|
||||||
|
: undefined,
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
tailscale:
|
tailscale:
|
||||||
|
|||||||
Reference in New Issue
Block a user