We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52128e3 commit fb2945eCopy full SHA for fb2945e
1 file changed
tools/linear/src/linear.ts
@@ -36,7 +36,6 @@ type SyncState = {
36
initialSync: boolean;
37
};
38
39
-
40
/**
41
* Linear project management tool
42
*
@@ -390,9 +389,9 @@ export class Linear extends Tool<Linear> implements ProjectTool {
390
389
title: issue.title,
391
created: issue.createdAt,
392
author: authorContact,
393
- assignee: assigneeContact ?? null, // Explicitly set to null for unassigned issues
+ assignee: assigneeContact ?? null,
394
done: issue.completedAt ?? null,
395
- start: state?.type !== "started" ? null : undefined,
+ start: assigneeContact ? undefined : null,
396
meta: {
397
linearId: issue.id,
398
projectId,
0 commit comments