From e23d158f48370d40e9e6f0f78244f8b6741af740 Mon Sep 17 00:00:00 2001 From: "hermes-seaeye[bot]" <307254004+hermes-seaeye[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 20:30:47 +0000 Subject: [PATCH] fmt(js): `npm run fix` on merge (#74360) Co-authored-by: github-actions[bot] --- apps/desktop/src/app/session/hooks/use-hermes-config.ts | 6 +++++- apps/desktop/src/store/session.ts | 3 +-- ui-tui/src/app/slash/commands/core.ts | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/desktop/src/app/session/hooks/use-hermes-config.ts b/apps/desktop/src/app/session/hooks/use-hermes-config.ts index 22d6ae552461f..59e990c64753e 100644 --- a/apps/desktop/src/app/session/hooks/use-hermes-config.ts +++ b/apps/desktop/src/app/session/hooks/use-hermes-config.ts @@ -14,7 +14,11 @@ import { setDefaultReasoningEffort, setIntroPersonality } from '@/store/session' -import { applyAutoSpeakFromConfig, applyThinkingSoundFromConfig, applyVoiceStopPhraseFromConfig } from '@/store/voice-prefs' +import { + applyAutoSpeakFromConfig, + applyThinkingSoundFromConfig, + applyVoiceStopPhraseFromConfig +} from '@/store/voice-prefs' const DEFAULT_VOICE_SECONDS = 120 const FAST_TIERS = new Set(['fast', 'priority', 'on']) diff --git a/apps/desktop/src/store/session.ts b/apps/desktop/src/store/session.ts index 62cf5ee6a9e3c..c9d7c1904d196 100644 --- a/apps/desktop/src/store/session.ts +++ b/apps/desktop/src/store/session.ts @@ -88,8 +88,7 @@ function rememberedRouteKey(profile?: null | string): string { return !key || key === 'default' ? LAST_ROUTE_KEY : `${LAST_ROUTE_KEY}.${key}` } -export const getRememberedRoute = (profile?: null | string): null | string => - storedString(rememberedRouteKey(profile)) +export const getRememberedRoute = (profile?: null | string): null | string => storedString(rememberedRouteKey(profile)) export const setRememberedRoute = (path: null | string, profile?: null | string) => persistString(rememberedRouteKey(profile), path) diff --git a/ui-tui/src/app/slash/commands/core.ts b/ui-tui/src/app/slash/commands/core.ts index 213337e398f96..00321ecc9046d 100644 --- a/ui-tui/src/app/slash/commands/core.ts +++ b/ui-tui/src/app/slash/commands/core.ts @@ -411,6 +411,7 @@ export const coreCommands: SlashCommand[] = [ if (shouldUseTerminalClipboard) { writeOsc52Clipboard(target.text) + return sys('sent OSC52 copy sequence (terminal support required)') }