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)') }