fix(core): update

This commit is contained in:
2024-05-23 15:54:33 +02:00
parent fb7c1242a9
commit 72e02bd611
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ declare var self: env.ServiceWindow;
import { ServiceWorker } from './serviceworker.classes.serviceworker.js';
export const getServiceWorkerInstance = () => {
export const getServiceWorkerInstance = async () => {
const sw = new ServiceWorker(self);
return sw;
}