From 2ba1e028e4f8fb2032d95648ea774196c0379809 Mon Sep 17 00:00:00 2001 From: "hermes-seaeye[bot]" <307254004+hermes-seaeye[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 23:18:02 +0000 Subject: [PATCH] fmt(js): `npm run fix` on merge (#71634) Co-authored-by: github-actions[bot] --- apps/desktop/src/app/session/hooks/use-prompt-actions/slash.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/desktop/src/app/session/hooks/use-prompt-actions/slash.ts b/apps/desktop/src/app/session/hooks/use-prompt-actions/slash.ts index 58ac07021f9b..f2c0d3b52c89 100644 --- a/apps/desktop/src/app/session/hooks/use-prompt-actions/slash.ts +++ b/apps/desktop/src/app/session/hooks/use-prompt-actions/slash.ts @@ -266,7 +266,8 @@ export function useSlashCommand(deps: SlashCommandDeps) { // would otherwise park the kickoff on whichever chat is now in // front. Fall back through the live selection for a session whose // cache entry hasn't landed yet. - const storedId = storedSessionId || $sessionStates.get()[sessionId]?.storedSessionId || $selectedStoredSessionId.get() + const storedId = + storedSessionId || $sessionStates.get()[sessionId]?.storedSessionId || $selectedStoredSessionId.get() const queueKey = resolveComposerSessionKey(storedId, $sessions.get()) || storedId || sessionId if (enqueueQueuedPrompt(queueKey, { attachments: [], text: message })) {