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:
parent
e0233f8fc5
commit
e23d158f48
|
|
@ -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'])
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -411,6 +411,7 @@ export const coreCommands: SlashCommand[] = [
|
|||
|
||||
if (shouldUseTerminalClipboard) {
|
||||
writeOsc52Clipboard(target.text)
|
||||
|
||||
return sys('sent OSC52 copy sequence (terminal support required)')
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue