From e87d3ec0a5645e384f6531c9a9f1b2756772d340 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 4 Jun 2026 22:01:54 -0400 Subject: [PATCH] fix: prettier formatting in toast.ts (trailing commas) Fixes CI Prettier check failure on commit c5c0a831. Co-Authored-By: Claude Sonnet 4.6 --- src/app/state/toast.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/state/toast.ts b/src/app/state/toast.ts index c69b79b9a..750176c4a 100644 --- a/src/app/state/toast.ts +++ b/src/app/state/toast.ts @@ -18,10 +18,12 @@ export const toastQueueAtom = atom( (get, set, notif) => { if (notif === null) return; // no-op guard set(baseAtom, [...get(baseAtom), notif]); - } + }, ); -export const dismissToastAtom = atom( - null, - (get, set, id) => set(baseAtom, get(baseAtom).filter((t) => t.id !== id)) +export const dismissToastAtom = atom(null, (get, set, id) => + set( + baseAtom, + get(baseAtom).filter((t) => t.id !== id), + ), );