diff --git a/frontend/src/features/browser-profiles/profile-browser.ts b/frontend/src/features/browser-profiles/profile-browser.ts index 2e12aa1b9..505457d8d 100644 --- a/frontend/src/features/browser-profiles/profile-browser.ts +++ b/frontend/src/features/browser-profiles/profile-browser.ts @@ -307,6 +307,10 @@ export class ProfileBrowser extends LiteElement { try { const resp = await fetch(result.url, { method: "HEAD" }); if (!resp.ok) { + this.pollTimerId = window.setTimeout( + () => void this.checkBrowserStatus(), + POLL_INTERVAL_SECONDS * 1000, + ); return; } } catch (e) {