From 1ed8531764cc9c6f6d7572d88d3adfe10e326029 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Tue, 1 Sep 2026 23:31:28 -0700 Subject: [PATCH] Line up selectedAll with the rest of the object it sits in It came in at two spaces inside a six-space set({ ... }), which reads as if it belonged to an outer scope. Whitespace only. --- web/src/store/mail.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/store/mail.ts b/web/src/store/mail.ts index 1b25204..432d652 100644 --- a/web/src/store/mail.ts +++ b/web/src/store/mail.ts @@ -310,7 +310,7 @@ export const useMail = create((set, get) => ({ set({ list: { ...q, key, ids: reuse ? cur.ids : [], total: reuse ? cur.total : 0, queryState: null, loading: true, loadingMore: false, error: null, exhausted: false }, selected: {}, - selectedAll: false, + selectedAll: false, anchorId: null, }); try {