From dd8b5430e634c89e5473c8490f1985047d1bedf9 Mon Sep 17 00:00:00 2001 From: shehab299 Date: Tue, 17 Mar 2026 23:11:13 +0200 Subject: [PATCH] (fix) rename tab_id to tabId when communicating with deamon --- cli/src/commands/tab/switch.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/commands/tab/switch.rs b/cli/src/commands/tab/switch.rs index 7bb51e5..aee3d82 100644 --- a/cli/src/commands/tab/switch.rs +++ b/cli/src/commands/tab/switch.rs @@ -5,6 +5,7 @@ use serde::{Deserialize, Serialize}; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct TabSwitchCommand { + #[serde(rename = "tabId")] pub tab_id: i32, }