From 2c8a858c898bef4702123842bf363336d217280d Mon Sep 17 00:00:00 2001 From: elpatron Date: Mon, 1 Jun 2026 22:14:07 +0200 Subject: [PATCH] fix(pwa): keep bootstrap watchdog active on startup errors Prevents failed app bootstrap from being marked as successful so the boot watchdog can continue recovery attempts instead of suppressing them. Co-authored-by: Cursor --- client/src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.tsx b/client/src/main.tsx index 303a19d..f878f3e 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -91,5 +91,5 @@ void bootstrap().catch((err) => { renderBootstrapError( 'Die App konnte nicht gestartet werden. Bitte neu laden oder die App vollständig beenden und erneut öffnen.', ) - window.__KDB_APP_BOOTSTRAPPED = true + window.__KDB_APP_BOOTSTRAPPED = false })