Skip to content

Commit 1c98daf

Browse files
committed
Removing unnecessary parentheses
1 parent 2f41f0c commit 1c98daf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/contributors/contributors.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default ({contributors}) => {
1212
<h3>Contributors</h3>
1313
<div className="contributors__list">
1414
{
15-
(contributors).map((contributor) => (
15+
contributors.map(contributor => (
1616
<a key={ contributor }
1717
className="contributor"
1818
href={ `https://github.com/${contributor}` }>

0 commit comments

Comments
 (0)