From 87cd2b6c87f727c0c57d1e91a699fd770a9410aa Mon Sep 17 00:00:00 2001 From: OllyNicholass Date: Mon, 18 Nov 2024 23:03:47 +0000 Subject: [PATCH] refactor(#35): whitespace --- src/lib/stores/toastStore.ts | 1 - 1 file changed, 1 deletion(-) 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) => {