Add lightbox retries and queue removal
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-05 17:42:44 +01:00
parent 4e0d156065
commit 5f75c7ca6a
10 changed files with 282 additions and 49 deletions

View File

@@ -57,6 +57,12 @@ export async function clearDone() {
});
}
export async function remove(id: number) {
await withStore('readwrite', (store) => {
store.delete(id);
});
}
export async function processQueue() {
if (processing) return; processing = true;
try {