We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 179aeb5 commit 16e1fd4Copy full SHA for 16e1fd4
src/components/Home/Contributors.tsx
@@ -197,7 +197,7 @@ export default function Contributors() {
197
const profiles = [] as React.ReactNode[];
198
for (let i = profileList.length - 1; i >= 0; i--) {
199
profiles.push(<Profile props={profileList[i]} key={`contributor${i}`} />)
200
- }
+ };
201
202
return (
203
<div className="contributors container my-24 mx-auto px-6">
@@ -209,4 +209,4 @@ export default function Contributors() {
209
</section>
210
</div>
211
);
212
-}
+};
0 commit comments