Skip to content

Commit d45c183

Browse files
committed
WEB-4460 fix chained fn indent
1 parent 7565f97 commit d45c183

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

app/pages/clinicworkspace/components/TagListCell.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const TagListCell = ({ patient }) => {
1111

1212
const tagIds = patient?.tags || [];
1313
const tags = tagIds
14-
.map(tag => patientTags.find(ptTag => ptTag.id === tag)) // TODO: index
14+
.map(tag => patientTags
15+
.find(ptTag => ptTag.id === tag)) // TODO: index
1516
.filter(Boolean);
1617

1718
return <TagList tags={tags} maxTagsVisible={MAX_TAGS} />;

0 commit comments

Comments
 (0)