feature: Surface Existing Unused APIs
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<template #queue>
|
||||
<h2 class="text-xl font-semibold mb-4 text-ink-strong">Verification Queue</h2>
|
||||
<p class="text-sm text-ink-secondary mb-4">
|
||||
Batches pending verification, sorted by submission time (oldest first).
|
||||
Batches pending verification, oldest first (FIFO by last update).
|
||||
</p>
|
||||
<BatchList
|
||||
:batches="batchStore.batches"
|
||||
@@ -84,8 +84,7 @@ function openBatch(id: string) {
|
||||
}
|
||||
|
||||
async function loadQueue() {
|
||||
await batchStore.listBatches({
|
||||
status: 'PENDING_VERIFICATION',
|
||||
await batchStore.listVerificationQueue({
|
||||
page: 1,
|
||||
pageSize: 50,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user