From 9650bf1f0deccc1d19bb94c2c4a8d8165d70caa4 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 4 Feb 2026 07:21:26 +0000 Subject: [PATCH] fix: add ignored field to eventsWithoutSession query for proper reactivity The TinyBase query was using 'ignored' in its WHERE clause but not selecting it, which could cause the query to not properly react to changes in the ignored field. This fixes the issue where clicking 'Ignore this event' sometimes didn't work. Co-Authored-By: john@hyprnote.com --- apps/desktop/src/store/tinybase/store/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/desktop/src/store/tinybase/store/main.ts b/apps/desktop/src/store/tinybase/store/main.ts index 14463b7a64..2dcf6ecc0a 100644 --- a/apps/desktop/src/store/tinybase/store/main.ts +++ b/apps/desktop/src/store/tinybase/store/main.ts @@ -105,6 +105,7 @@ export const StoreComponent = () => { select("started_at"); select("ended_at"); select("calendar_id"); + select("ignored"); join("sessions", (_getCell, rowId) => { let id: string | undefined;