From a7d39913fdf25e59b78f393779b093b10ddd6929 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 9 Dec 2025 19:00:15 +0000 Subject: [PATCH] mac: fix actor call and label warnings --- apps/macos/Sources/Clawdis/GatewayEnvironment.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/macos/Sources/Clawdis/GatewayEnvironment.swift b/apps/macos/Sources/Clawdis/GatewayEnvironment.swift index 326d4110d..93e3daab5 100644 --- a/apps/macos/Sources/Clawdis/GatewayEnvironment.swift +++ b/apps/macos/Sources/Clawdis/GatewayEnvironment.swift @@ -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,