Merge branch 'dev' into dev

This commit is contained in:
William Oldham 2024-03-26 17:13:54 +00:00 committed by GitHub
commit 0581d01cbf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,10 +83,12 @@ export function WorkerTestPart() {
status: "success",
});
} catch (err) {
const error = err as Error;
error.message = error.message.replace(worker.url, "WORKER_URL");
updateWorker(worker.id, {
id: worker.id,
status: "error",
error: err as Error,
error,
});
}
});