Skip to content

Commit 444ace8

Browse files
committed
fix: import and prop issue
1 parent 9e08927 commit 444ace8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/frontend/src/app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</template>
88
<script setup lang="ts">
99
import { NotificationPanel, provideNotificationManager } from "@modrinth/ui";
10-
import { FrontendNotificationManager } from "./providers/web-notifications.ts";
1110
import ModrinthLoadingIndicator from "~/components/ui/modrinth-loading-indicator.ts";
11+
import { FrontendNotificationManager } from "./providers/frontend-notifications.ts";
1212
1313
provideNotificationManager(new FrontendNotificationManager());
1414
</script>

packages/ui/src/components/nav/NotificationPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ onMounted(() => {
139139
140140
withDefaults(
141141
defineProps<{
142-
hasSidebar: boolean
142+
hasSidebar?: boolean
143143
}>(),
144144
{
145145
hasSidebar: false,

0 commit comments

Comments
 (0)