From d6a4ee6d2f92d937daa473975e42318dc99ae160 Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Mon, 7 Jul 2025 22:38:05 -0400 Subject: [PATCH] Fix allowCrossUserAccess --- apps/web/src/actions/analytics/events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/actions/analytics/events.ts b/apps/web/src/actions/analytics/events.ts index 73a25d9f0a..f15a426c20 100644 --- a/apps/web/src/actions/analytics/events.ts +++ b/apps/web/src/actions/analytics/events.ts @@ -691,7 +691,7 @@ export const getTaskById = async ({ orgId, userId, limit: 1, - allowCrossUserAccess: false, + allowCrossUserAccess: true, // Allow access to tasks from other users in the same org }); return result.tasks[0] || null;