From 52c2447c2a143e8786bfc5831b9a6a0b99167efd Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 25 Jul 2024 00:28:00 -0700 Subject: fix(service-worker): fix import paths --- src/service-worker.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/service-worker.ts b/src/service-worker.ts index 082a25de..6ce56da5 100644 --- a/src/service-worker.ts +++ b/src/service-worker.ts @@ -4,8 +4,8 @@ /// import { build, files, version } from '$service-worker'; -import { database } from './lib/Database/user'; -import { type Notification, notifications } from './lib/Data/AniList/notifications'; +import { database } from './lib/Database/IndexedDB/user'; +import { notifications } from './lib/Data/AniList/notifications'; const sw = /** @type {ServiceWorkerGlobalScope} */ /** @type {unknown} */ self; -- cgit v1.2.3