From d649124b09e4e510b1bf49a28b665a30e8875943 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 18 Jan 2026 21:45:38 +0000 Subject: [PATCH] fix: remove duplicate zapTitle condition in DynamicWindowTitle Removed duplicate zapTitle if-else branch at line 870 that was causing lint error. The first zapTitle condition at line 803 handles all cases, making the second occurrence unreachable. --- src/components/DynamicWindowTitle.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/DynamicWindowTitle.tsx b/src/components/DynamicWindowTitle.tsx index 2962cba..834bed7 100644 --- a/src/components/DynamicWindowTitle.tsx +++ b/src/components/DynamicWindowTitle.tsx @@ -867,10 +867,6 @@ function useDynamicTitle(window: WindowInstance): WindowTitleData { title = chatTitle; icon = getCommandIcon("chat"); tooltip = rawCommand; - } else if (zapTitle) { - title = zapTitle; - icon = getCommandIcon("zap"); - tooltip = rawCommand; } else { title = staticTitle || appId.toUpperCase(); tooltip = rawCommand;