Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <[email protected]>
  • Loading branch information
aaronchongth committed May 10, 2024
1 parent fe49360 commit 2c2d5d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/react-components/lib/tasks/create-task.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,10 @@ export function CreateTaskForm({
InputLabelProps={{ style: { fontSize: isScreenHeightLessThan800 ? 16 : 20 } }}
>
{SupportedTaskDefinitions.map((taskDefinition) => (
<MenuItem value={taskDefinition.task_definition_id}>
<MenuItem
value={taskDefinition.task_definition_id}
key={taskDefinition.task_definition_id}
>
{taskDefinition.task_display_name}
</MenuItem>
))}
Expand Down

0 comments on commit 2c2d5d2

Please sign in to comment.