diff --git a/src/lib/components/Card/Card.svelte b/src/lib/components/Card/Card.svelte index d3e20e4..10db614 100644 --- a/src/lib/components/Card/Card.svelte +++ b/src/lib/components/Card/Card.svelte @@ -7,7 +7,7 @@ import { Clock, Star } from 'radix-icons-svelte'; import ContextMenu from '../ContextMenu/ContextMenu.svelte'; import LibraryItemContextItems from '../ContextMenu/LibraryItemContextItems.svelte'; - import { openTitleModal } from '../Modal/Modal'; + import { openTitleModal } from '../../stores/modal.store'; import ProgressBar from '../ProgressBar.svelte'; export let tmdbId: number; diff --git a/src/lib/components/Modal/DynamicModal.svelte b/src/lib/components/Modal/DynamicModal.svelte index cd60d1f..043a82f 100644 --- a/src/lib/components/Modal/DynamicModal.svelte +++ b/src/lib/components/Modal/DynamicModal.svelte @@ -1,6 +1,6 @@ + +
+
+ + +
+

{description}

+
+
diff --git a/src/lib/components/Notification/Notifications.svelte b/src/lib/components/Notification/Notifications.svelte new file mode 100644 index 0000000..5a1c87c --- /dev/null +++ b/src/lib/components/Notification/Notifications.svelte @@ -0,0 +1,17 @@ + + +
+ {#each $notificationStack as notification (notification.id)} +
+ +
+ {/each} +
diff --git a/src/lib/components/RequestModal/EpisodeSelectModal.svelte b/src/lib/components/RequestModal/EpisodeSelectModal.svelte index 3870843..d674dab 100644 --- a/src/lib/components/RequestModal/EpisodeSelectModal.svelte +++ b/src/lib/components/RequestModal/EpisodeSelectModal.svelte @@ -1,6 +1,6 @@