From ef477910a4e2f2c1c460759bca3e8152496a97c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Jamr=C3=B3z?= Date: Tue, 19 Nov 2024 13:10:43 +0100 Subject: [PATCH] Fix typo --- public/app/core/utils/CorsSharedWorker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/utils/CorsSharedWorker.ts b/public/app/core/utils/CorsSharedWorker.ts index 7e697327d42..92a476d5338 100644 --- a/public/app/core/utils/CorsSharedWorker.ts +++ b/public/app/core/utils/CorsSharedWorker.ts @@ -1,4 +1,4 @@ -// Almost identical to CorsWorker.ts. Main difference being it creates a SharedWorker in runtime (if it's supported bythe browser +// Almost identical to CorsWorker.ts. Main difference being it creates a SharedWorker in runtime if browser supports it export function sharedWorkersSupported() { return typeof window.SharedWorker !== 'undefined';