Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,9 @@
// 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

Check warning on line 271 in apps/desktop/src/app/session/hooks/use-prompt-actions/slash.ts

View workflow job for this annotation

GitHub Actions / JS & TS checks / apps/desktop / check:lint

Expected blank line before this statement

if (enqueueQueuedPrompt(queueKey, { attachments: [], text: message })) {
renderSlashOutput('session busy — message queued to send when the current turn finishes')
Expand Down
Loading