fix: lint & build
This commit is contained in:
parent
04404392d6
commit
174d358c99
@ -7,8 +7,8 @@
|
|||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { NotificationPanel, provideNotificationManager } from "@modrinth/ui";
|
import { NotificationPanel, provideNotificationManager } from "@modrinth/ui";
|
||||||
import ModrinthLoadingIndicator from "~/components/ui/modrinth-loading-indicator.ts";
|
|
||||||
import { FrontendNotificationManager } from "./providers/frontend-notifications.ts";
|
import { FrontendNotificationManager } from "./providers/frontend-notifications.ts";
|
||||||
|
import ModrinthLoadingIndicator from "~/components/ui/modrinth-loading-indicator.ts";
|
||||||
|
|
||||||
provideNotificationManager(new FrontendNotificationManager());
|
provideNotificationManager(new FrontendNotificationManager());
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -86,8 +86,9 @@ import {
|
|||||||
XCircleIcon,
|
XCircleIcon,
|
||||||
XIcon,
|
XIcon,
|
||||||
} from '@modrinth/assets'
|
} from '@modrinth/assets'
|
||||||
import { ButtonStyled, injectNotificationManager, type WebNotification } from '@modrinth/ui'
|
|
||||||
import { computed, onBeforeUnmount, onMounted, ref } from 'vue'
|
import { computed, onBeforeUnmount, onMounted, ref } from 'vue'
|
||||||
|
import { injectNotificationManager, type WebNotification } from '../../providers'
|
||||||
|
import ButtonStyled from '../base/ButtonStyled.vue'
|
||||||
|
|
||||||
const notificationManager = injectNotificationManager()
|
const notificationManager = injectNotificationManager()
|
||||||
const notifications = computed<WebNotification[]>(() => notificationManager.getNotifications())
|
const notifications = computed<WebNotification[]>(() => notificationManager.getNotifications())
|
||||||
|
|||||||
@ -107,7 +107,7 @@ export interface ProjectV3 {
|
|||||||
monetization_status: MonetizationStatus
|
monetization_status: MonetizationStatus
|
||||||
side_types_migration_review_status: 'reviewed' | 'pending'
|
side_types_migration_review_status: 'reviewed' | 'pending'
|
||||||
|
|
||||||
[key: string]: any
|
[key: string]: unknown
|
||||||
}
|
}
|
||||||
|
|
||||||
export type SideTypesMigrationReviewStatus = 'reviewed' | 'pending'
|
export type SideTypesMigrationReviewStatus = 'reviewed' | 'pending'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user