Add prompt ID to interrupt API call (#4393)

This commit is contained in:
Deep Roy
2025-07-10 20:24:21 -04:00
committed by GitHub
parent ab43b5e421
commit 7cf5d1e86b
3 changed files with 14 additions and 6 deletions

View File

@@ -159,7 +159,7 @@ const toggleExpanded = () => {
const removeTask = async (task: TaskItemImpl) => {
if (task.isRunning) {
await api.interrupt()
await api.interrupt(task.promptId)
}
await queueStore.delete(task)
}