diff --git a/apps/frontend/src/app.vue b/apps/frontend/src/app.vue
index b6a3be675..c4253d14e 100644
--- a/apps/frontend/src/app.vue
+++ b/apps/frontend/src/app.vue
@@ -7,8 +7,8 @@
diff --git a/packages/ui/src/components/nav/NotificationPanel.vue b/packages/ui/src/components/nav/NotificationPanel.vue
index 32384cf4e..c99cfdb3b 100644
--- a/packages/ui/src/components/nav/NotificationPanel.vue
+++ b/packages/ui/src/components/nav/NotificationPanel.vue
@@ -86,8 +86,9 @@ import {
XCircleIcon,
XIcon,
} from '@modrinth/assets'
-import { ButtonStyled, injectNotificationManager, type WebNotification } from '@modrinth/ui'
import { computed, onBeforeUnmount, onMounted, ref } from 'vue'
+import { injectNotificationManager, type WebNotification } from '../../providers'
+import ButtonStyled from '../base/ButtonStyled.vue'
const notificationManager = injectNotificationManager()
const notifications = computed(() => notificationManager.getNotifications())
diff --git a/packages/utils/types.ts b/packages/utils/types.ts
index f76a903e9..07d2aadfe 100644
--- a/packages/utils/types.ts
+++ b/packages/utils/types.ts
@@ -107,7 +107,7 @@ export interface ProjectV3 {
monetization_status: MonetizationStatus
side_types_migration_review_status: 'reviewed' | 'pending'
- [key: string]: any
+ [key: string]: unknown
}
export type SideTypesMigrationReviewStatus = 'reviewed' | 'pending'