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 c58b11a commit 179aeb5Copy full SHA for 179aeb5
src/components/Home/Contributors.tsx
@@ -195,8 +195,9 @@ const profileList: profileInfo[] = [
195
196
export default function Contributors() {
197
const profiles = [] as React.ReactNode[];
198
- profileList.reverse(); // Recent contributors first
199
- profileList.forEach((profile, i) => profiles.push(<Profile props={profile} key={`contributor${i}`} />))
+ for (let i = profileList.length - 1; i >= 0; i--) {
+ profiles.push(<Profile props={profileList[i]} key={`contributor${i}`} />)
200
+ }
201
202
return (
203
<div className="contributors container my-24 mx-auto px-6">
0 commit comments