From 6a927e30f743fac0a5451381ceed7f1d83e94a37 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Thu, 10 Sep 2026 07:47:39 -0400 Subject: fix: clean up simple migration type errors --- src/utils/toastUtils.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/utils/toastUtils.ts') diff --git a/src/utils/toastUtils.ts b/src/utils/toastUtils.ts index 3468064..c41f4c0 100644 --- a/src/utils/toastUtils.ts +++ b/src/utils/toastUtils.ts @@ -5,7 +5,9 @@ export interface ToastOptions { body: string; } -const showToast = (title: string, body: string): void => toaster.toast({ title, body }); +const showToast = (title: string, body: string): void => { + toaster.toast({ title, body }); +}; export const showSuccessToast = showToast; export const showErrorToast = showToast; -- cgit v1.2.3