diff --git a/src/client/sw/notification-read.ts b/src/client/sw/notification-read.ts index 093322a8b7..b0b73aace8 100644 --- a/src/client/sw/notification-read.ts +++ b/src/client/sw/notification-read.ts @@ -11,7 +11,7 @@ type Accounts = { } }; -class SwNotificationRead { +class SwNotificationReadManager { private accounts: Accounts = {}; public async construct() { @@ -47,4 +47,4 @@ class SwNotificationRead { } } -export const swNotificationRead = (new SwNotificationRead()).construct(); +export const swNotificationRead = (new SwNotificationReadManager()).construct();