From 235a60d3c28e4622f6b5ef891e1bf45ba1736483 Mon Sep 17 00:00:00 2001 From: Brendan Allan Date: Thu, 18 Dec 2025 17:18:46 +0800 Subject: [PATCH] tauri: say OpenCode Server instead of OpenCode CLI --- packages/tauri/src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tauri/src-tauri/src/lib.rs b/packages/tauri/src-tauri/src/lib.rs index f39096031..e9d9ed44c 100644 --- a/packages/tauri/src-tauri/src/lib.rs +++ b/packages/tauri/src-tauri/src/lib.rs @@ -211,7 +211,7 @@ pub fn run() { loop { if timestamp.elapsed() > Duration::from_secs(7) { let res = app.dialog() - .message("Failed to spawn OpenCode CLI. Copy logs using the button below and send them to the team for assistance.") + .message("Failed to spawn OpenCode Server. Copy logs using the button below and send them to the team for assistance.") .title("Startup Failed") .buttons(MessageDialogButtons::OkCancelCustom("Copy Logs And Exit".to_string(), "Exit".to_string())) .blocking_show_with_result();