chore: decreased toast show time
mellbacon committed
May 21, 2024 at 18:23 UTC
c0a382140ff488a797c55ac4983539b6bdd953c3
1 file changed
+1
-1
src/lib/Notifications/NotificationToast.svelte
+1
-1
@@ -15,7 +15,7 @@
15
let timer = setTimeout(() => {
16
notification.remove();
17
clearTimeout(timer);
18
- }, 1500000)
18
+ }, 1500)
19
return () => {
20
clearTimeout(timer)
21
}