Stabilize customer booking and i18n checks

This commit is contained in:
Jeppe B
2026-07-14 10:34:29 +02:00
parent 6ccfea9eb4
commit 26266e724b
3 changed files with 83 additions and 34 deletions
@@ -155,9 +155,9 @@ async function deployWorkers() {
try {
await deployCronWorkers({});
await loadWorkers();
queuedMessage.value = t(
updatingDeployment ? "cron.messages.worker_update_queued" : "cron.messages.worker_deploy_queued"
);
queuedMessage.value = updatingDeployment
? t("cron.messages.worker_update_queued")
: t("cron.messages.worker_deploy_queued");
} catch (error) {
errorMessage.value = parseError(error);
} finally {