diff --git a/src/client/sw/lang.ts b/src/client/sw/lang.ts
index 99f0e518c3..1b3f1ad620 100644
--- a/src/client/sw/lang.ts
+++ b/src/client/sw/lang.ts
@@ -3,7 +3,7 @@
  */
 declare var self: ServiceWorkerGlobalScope;
 
-import { get, set } from '@/scripts/idb-proxy';
+import { get, set } from 'idb-keyval';
 import { I18n } from '../../misc/i18n';
 
 class SwLang {
diff --git a/src/client/sw/notification-read.ts b/src/client/sw/notification-read.ts
index 03cb0611ca..093322a8b7 100644
--- a/src/client/sw/notification-read.ts
+++ b/src/client/sw/notification-read.ts
@@ -1,6 +1,6 @@
 declare var self: ServiceWorkerGlobalScope;
 
-import { get } from '@/scripts/idb-proxy';
+import { get } from 'idb-keyval';
 import { pushNotificationData } from '../../types';
 import { api } from './operations';