refactor(#35): whitespace

This commit is contained in:
OllyNicholass
2024-11-18 23:03:47 +00:00
parent 0ccf04fcbc
commit 87cd2b6c87
-1
View File
@@ -4,7 +4,6 @@ import { writable } from 'svelte/store';
const MIN_DELAY = 3000;
export const toast = writable<Toast>({ hideToast: true, toastMessage: '', toastType: 'success' });
export function scheduleToast(message: string, toastType: 'success' | 'error', delay: number = MIN_DELAY) {
toast.update((value) => {