From 96ee1168b192f581b50c8278f775d8f4ca02e2a0 Mon Sep 17 00:00:00 2001 From: Timothy Cardoza Date: Thu, 19 Feb 2026 17:25:17 -0600 Subject: [PATCH] build error fix --- src/store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.ts b/src/store/index.ts index fd4ab77..157fccd 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -455,7 +455,7 @@ const shouldTaskBeVisible = (task: any, currentUserId: string): boolean => { // We ignore the rule.ownerId check (which would match the task.user) // and instead match purely on the tag. if (rule.ownerId === rule.targetUserId && rule.type === 'tag') { - const tags = task.tags || []; + const tags: string[] = task.tags || []; return tags.some(t => t.toLowerCase() === (rule.tagName || "").toLowerCase()); }