Skip to content

Commit

Permalink
web: please linters
Browse files Browse the repository at this point in the history
  • Loading branch information
dgdavid committed Apr 2, 2024
1 parent d21d42a commit faf88f4
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions web/src/components/software/PatternSelector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,16 +134,14 @@ function PatternSelector({ patterns, onSelectionChanged = noop }) {

const groups = groupPatterns(visiblePatterns);

const renderPatternOption = (pattern) => {
return (
const renderPatternOption = (pattern) => (
<div>
<div>
<div>
<b>{pattern.summary}</b>
</div>
<div>{pattern.description}</div>
<b>{pattern.summary}</b>
</div>
);
}
<div>{pattern.description}</div>
</div>
);

const selector = sortGroups(groups).map((groupName) => {
const selectedIds = groups[groupName].filter((p) => p.selectedBy !== SelectedBy.NONE).map((p) =>
Expand Down

0 comments on commit faf88f4

Please sign in to comment.