diff --git a/app/api/leantime/tasks/route.ts b/app/api/leantime/tasks/route.ts index b0e96246..6d13e4c8 100644 --- a/app/api/leantime/tasks/route.ts +++ b/app/api/leantime/tasks/route.ts @@ -161,7 +161,7 @@ export async function GET(request: NextRequest) { }); // Only include tasks where the current user is assigned - return task.editorId === userId.toString(); + return task.editorId === userId.toString() || task.editorId === userId; }) .map((task: any) => ({ id: task.id.toString(),