From 0d4b588fd0808ec3958a954179e8ae228a5dea39 Mon Sep 17 00:00:00 2001 From: Linus Rath <139418639+rathlinus@users.noreply.github.com> Date: Wed, 8 Apr 2026 22:42:56 +0200 Subject: [PATCH] feat: add Latvian (lv) locale support --- public/sw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/sw.js b/public/sw.js index fdfe53d8..db44454a 100644 --- a/public/sw.js +++ b/public/sw.js @@ -21,6 +21,6 @@ self.addEventListener("activate", (event) => { await self.registration.unregister(); const clients = await self.clients.matchAll({ type: "window" }); clients.forEach((client) => client.navigate(client.url)); - })() + })(), ); });