We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f3f8768 + 2e8f557 commit 9b0ea7fCopy full SHA for 9b0ea7f
1 file changed
src/lib/layout/notifications.svelte
@@ -1,5 +1,4 @@
1
<script lang="ts">
2
- import { flip } from 'svelte/animate';
3
import { fly } from 'svelte/transition';
4
import { Layout, Toast } from '@appwrite.io/pink-svelte';
5
import { dismissNotification, notifications } from '../stores/notifications';
@@ -9,7 +8,7 @@
9
8
<section>
10
<Layout.Stack gap="s">
11
{#each $notifications as notification (notification.id)}
12
- <span animate:flip={{ duration: 500 }} transition:fly|global={{ x: 50 }}>
+ <span transition:fly|global={{ x: 50 }}>
13
<Toast
14
isHtml={notification.isHtml}
15
title={notification.title}
0 commit comments