fix(ci): satisfy formatter checks
This commit is contained in:
parent
5f4936dce5
commit
8e8d07cbf4
2 changed files with 4 additions and 6 deletions
|
|
@ -262,12 +262,10 @@ actor GatewayEndpointStore {
|
||||||
tailscaleIP: String?) -> String
|
tailscaleIP: String?) -> String
|
||||||
{
|
{
|
||||||
switch bindMode {
|
switch bindMode {
|
||||||
case "tailnet":
|
case "tailnet", "auto":
|
||||||
return tailscaleIP ?? "127.0.0.1"
|
tailscaleIP ?? "127.0.0.1"
|
||||||
case "auto":
|
|
||||||
return tailscaleIP ?? "127.0.0.1"
|
|
||||||
default:
|
default:
|
||||||
return "127.0.0.1"
|
"127.0.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -297,7 +297,7 @@ export async function handleCommands(params: {
|
||||||
: undefined;
|
: undefined;
|
||||||
const statusText = buildStatusMessage({
|
const statusText = buildStatusMessage({
|
||||||
agent: {
|
agent: {
|
||||||
...(cfg.agent ?? {}),
|
...cfg.agent,
|
||||||
model,
|
model,
|
||||||
contextTokens,
|
contextTokens,
|
||||||
thinkingDefault: cfg.agent?.thinkingDefault,
|
thinkingDefault: cfg.agent?.thinkingDefault,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue