From 3c4f6ccabdd61b5f6fe1f728c6a8cbb802d5d293 Mon Sep 17 00:00:00 2001 From: Test Date: Sat, 4 Apr 2026 16:46:25 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20coerce=20claudeCodeStatus/Version=20null?= =?UTF-8?q?=E2=86=92undefined=20for=20AppCommandsConfig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 406c234e..b976fe38 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -484,8 +484,8 @@ function App() { vaultCount: vaultSwitcher.allVaults.length, mcpStatus, onInstallMcp: installMcp, - claudeCodeStatus, - claudeCodeVersion, + claudeCodeStatus: claudeCodeStatus ?? undefined, + claudeCodeVersion: claudeCodeVersion ?? undefined, onEmptyTrash: deleteActions.handleEmptyTrash, trashedCount: deleteActions.trashedCount, onReloadVault: vault.reloadVault,