From 7d7aa6575e57aad3ac66a2fb405b42526149fecf Mon Sep 17 00:00:00 2001 From: Toshit Chawda Date: Mon, 14 Oct 2024 20:46:13 -0700 Subject: [PATCH] format??? --- src/worker/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/worker/index.ts b/src/worker/index.ts index e6fb682..c23cd23 100644 --- a/src/worker/index.ts +++ b/src/worker/index.ts @@ -33,7 +33,7 @@ export class ScramjetServiceWorker extends EventTarget { dbg.log("Loaded cookies from IDB!"); } }; - } + }; addEventListener("message", async ({ data }: { data: MessageC2W }) => { if (!("scramjet$type" in data)) return; @@ -52,7 +52,7 @@ export class ScramjetServiceWorker extends EventTarget { const tx = res.transaction("cookies", "readwrite"); const store = tx.objectStore("cookies"); store.put(this.cookieStore.dump(), "cookies"); - } + }; } }); }