Skip to content

Commit

Permalink
Remove useless style
Browse files Browse the repository at this point in the history
  • Loading branch information
ligangty committed Jan 15, 2024
1 parent 640d2ab commit 3f3d46b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function GroupView() {
store.constituents && store.constituents.length > 0 &&
<ol className="detail-value detail-value-list">
{
store.constituents.map(item => <li key={`constituent-${item}`} className="detail-value-list-item">
store.constituents.map(item => <li key={`constituent-${item}`}>
<Link to={Utils.detailHref(item)}>{item}</Link>
</li>)
}
Expand Down

0 comments on commit 3f3d46b

Please sign in to comment.