diff --git a/src/composables/queue/useJobList.ts b/src/composables/queue/useJobList.ts index f73cad71f2..133c624234 100644 --- a/src/composables/queue/useJobList.ts +++ b/src/composables/queue/useJobList.ts @@ -182,8 +182,6 @@ export function useJobList() { ] return all.sort((a, b) => b.queueIndex - a.queueIndex) }) - // Backward-compatible alias used by existing tests/consumers. - const allTasksSorted = orderedTasks const tasksWithJobState = computed(() => orderedTasks.value.map((task) => ({ @@ -277,7 +275,6 @@ export function useJobList() { }) return { - allTasksSorted, orderedTasks, jobItems, groupedJobItems,