From 6b6b5ffc28a9473a1498391804a9aa242c218e4f Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 20 May 2025 10:32:47 -0700 Subject: [PATCH] [ticket/17513] Fix JS linting PHPBB-17513 --- phpBB/styles/all/js/push_worker.js.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/all/js/push_worker.js.twig b/phpBB/styles/all/js/push_worker.js.twig index 1d57d5c598..115c509427 100644 --- a/phpBB/styles/all/js/push_worker.js.twig +++ b/phpBB/styles/all/js/push_worker.js.twig @@ -38,7 +38,7 @@ self.addEventListener('push', event => { return; } - event.waitUntil((async () => { + event.waitUntil((async() => { const getNotificationUrl = '{{ U_WEBPUSH_GET_NOTIFICATION }}'; const assetsVersion = parseInt('{{ ASSETS_VERSION }}', 10);