Skip to content

Commit ddeca14

Browse files
committed
comma syntax error patched
1 parent 64fd6fc commit ddeca14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/triggers/azure_devops/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export function formatWorkItemCreatedInput(body: Record<string, unknown>): Recor
257257
createdBy:
258258
(fields['System.CreatedBy'] as { displayName?: string } | undefined)?.displayName ?? '',
259259
assignedTo:
260-
(fields['System.AssignedTo'] as { displayName?: string } | undefined)?.displayName ?? ''
260+
(fields['System.AssignedTo'] as { displayName?: string } | undefined)?.displayName ?? '',
261261
priority: Number(fields['Microsoft.VSTS.Common.Priority'] ?? 0),
262262
areaPath: (fields['System.AreaPath'] as string) ?? '',
263263
iterationPath: (fields['System.IterationPath'] as string) ?? '',

0 commit comments

Comments
 (0)