From 174d358c99ac0dcc378b84d3f7492f0c4000ed1d Mon Sep 17 00:00:00 2001 From: IMB11 Date: Sat, 2 Aug 2025 13:27:21 +0100 Subject: [PATCH] fix: lint & build --- apps/frontend/src/app.vue | 2 +- packages/ui/src/components/nav/NotificationPanel.vue | 3 ++- packages/utils/types.ts | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) 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'