From 55dd7fbba14cd86a7aaa54850aa39ee043180628 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Thu, 23 Apr 2026 11:20:11 +0000 Subject: [PATCH] chore: remove desktop command, force condensed logo, update tip copy Co-Authored-By: Claude Opus 4.6 --- src/commands.ts | 4 ++-- src/components/LogoV2/LogoV2.tsx | 4 ++-- src/services/tips/tipRegistry.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/commands.ts b/src/commands.ts index bea2dcffd..8fa1c6d1d 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -10,7 +10,7 @@ import clear from './commands/clear/index.js' import color from './commands/color/index.js' import commit from './commands/commit.js' import copy from './commands/copy/index.js' -import desktop from './commands/desktop/index.js' +// import desktop from './commands/desktop/index.js' import commitPushPr from './commands/commit-push-pr.js' import compact from './commands/compact/index.js' import config from './commands/config/index.js' @@ -310,7 +310,7 @@ const COMMANDS = memoize((): Command[] => [ compact, config, copy, - desktop, + // desktop, context, contextNonInteractive, cost, diff --git a/src/components/LogoV2/LogoV2.tsx b/src/components/LogoV2/LogoV2.tsx index cfec387fc..528c0954c 100644 --- a/src/components/LogoV2/LogoV2.tsx +++ b/src/components/LogoV2/LogoV2.tsx @@ -124,7 +124,7 @@ export function LogoV2(): React.ReactNode { // In condensed mode (early-return below renders ), // CondensedLogo's own useEffect handles the impression count. Skipping // here avoids double-counting since hooks fire before the early return. - const isCondensedMode = !hasReleaseNotes && !showOnboarding && !isEnvTruthy(process.env.CLAUDE_CODE_FORCE_FULL_LOGO); + const isCondensedMode = true; useEffect(() => { if (showGuestPassesUpsell && !showOnboarding && !isCondensedMode) { @@ -149,7 +149,7 @@ export function LogoV2(): React.ReactNode { const modelDisplayName = truncate(fullModelDisplayName + effortSuffix, LEFT_PANEL_MAX_WIDTH - 20); // Show condensed logo if no new changelog and not showing onboarding and not forcing full logo - if (!hasReleaseNotes && !showOnboarding && !isEnvTruthy(process.env.CLAUDE_CODE_FORCE_FULL_LOGO)) { + if (true) { return ( <> diff --git a/src/services/tips/tipRegistry.ts b/src/services/tips/tipRegistry.ts index ab16cc4c4..73d43bc07 100644 --- a/src/services/tips/tipRegistry.ts +++ b/src/services/tips/tipRegistry.ts @@ -437,7 +437,7 @@ const externalTips: Tip[] = [ { id: 'desktop-app', content: async () => - 'Run CoStrict locally or remotely using the Claude desktop app: clau.de/desktop', + 'Run CoStrict locally Or remotely using the CoStrict Web', cooldownSessions: 15, isRelevant: async () => getPlatform() !== 'linux', },