diff --git a/src/lib/stores/toastStore.ts b/src/lib/stores/toastStore.ts index d99e79f..82785cf 100644 --- a/src/lib/stores/toastStore.ts +++ b/src/lib/stores/toastStore.ts @@ -4,7 +4,6 @@ import { writable } from 'svelte/store'; const MIN_DELAY = 3000; export const toast = writable({ hideToast: true, toastMessage: '', toastType: 'success' }); - export function scheduleToast(message: string, toastType: 'success' | 'error', delay: number = MIN_DELAY) { toast.update((value) => {