fmt(js): `npm run fix` on merge (#74360)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot] 2026-07-29 20:30:47 +00:00 committed by GitHub
parent e0233f8fc5
commit e23d158f48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 3 deletions

View File

@ -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'])

View File

@ -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)

View File

@ -411,6 +411,7 @@ export const coreCommands: SlashCommand[] = [
if (shouldUseTerminalClipboard) {
writeOsc52Clipboard(target.text)
return sys('sent OSC52 copy sequence (terminal support required)')
}