increase RequestFinished timeout to 10s

This commit is contained in:
Eric 2024-07-08 12:23:09 +02:00
parent 4e1549609e
commit 22d590c59d
No known key found for this signature in database

View File

@ -372,7 +372,7 @@ export const useRequestsStore = defineStore(
timestamp: Date.now() / 1000,
moderated: requests.value[requestId]?.moderated
})
}, msFromNow + 1000) // add additional second to ensure state has changed
}, msFromNow + 10000) // add additional 10s to ensure state has changed
}
function cancelWaitForRequestFinished(requestId) {