mac: fix actor call and label warnings

main
Peter Steinberger 2025-12-09 19:00:15 +00:00
parent 85ca2152e4
commit a7d39913fd
1 changed files with 1 additions and 1 deletions

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,