fix(notifications): retarget NotificationItem import to singleton store

Left over from the hook→singleton refactor — NotificationDropdown still
imported from the deleted $lib/hooks path.

Part of #285.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-20 16:27:53 +02:00
committed by marcel
parent 56161f9a49
commit f13b2a984e

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import { m } from '$lib/paraglide/messages.js';
import { relativeTime } from '$lib/utils/time';
import type { NotificationItem } from '$lib/hooks/useNotificationStream.svelte';
import type { NotificationItem } from '$lib/stores/notifications.svelte';
type Props = {
notifications: NotificationItem[];