mac: fix actor call and label warnings

This commit is contained in:
Peter Steinberger
2025-12-09 19:00:15 +00:00
parent 85ca2152e4
commit a7d39913fd

View File

@@ -111,7 +111,7 @@ enum GatewayEnvironment {
let gatewayLabel = gatewayBin != nil ? "global" : "local"
let gatewayVersionText = installed?.description ?? "unknown"
let localPathHint = gatewayBin == nil && projectEntrypoint != nil
? " (local: \(projectEntrypoint))"
? " (local: \(projectEntrypoint?.path ?? \"unknown\"))"
: ""
return GatewayEnvironmentStatus(
kind: .ok,