From f3515f76280157838e8766220f28bfa8e730bf71 Mon Sep 17 00:00:00 2001 From: Josh Kasten Date: Wed, 11 Sep 2024 00:03:07 +0000 Subject: [PATCH] rm ServiceWorkerActiveState.Indeterminate Remove this unused state that was only for the v15 SDK. --- src/shared/helpers/ServiceWorkerHelper.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/shared/helpers/ServiceWorkerHelper.ts b/src/shared/helpers/ServiceWorkerHelper.ts index fbc87b24c..ea06d38c6 100755 --- a/src/shared/helpers/ServiceWorkerHelper.ts +++ b/src/shared/helpers/ServiceWorkerHelper.ts @@ -279,12 +279,6 @@ export enum ServiceWorkerActiveState { * No service worker is installed. */ None = 'None', - /** - * Service workers are not supported in this environment. This status is used - * on HTTP pages where it isn't possible to know whether a service worker is - * installed or not or in any of the other states. - */ - Indeterminate = 'Indeterminate', } export interface ServiceWorkerManagerConfig {