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 be63008 commit 61ab4f8Copy full SHA for 61ab4f8
1 file changed
client/src/pages/about.tsx
@@ -118,7 +118,7 @@ export default function AboutPage() {
118
}
119
120
if (isPending) {
121
- for (let i = 0; i < 8; i++) {
+ for (let i = 0; i < roleOrder.length; i++) {
122
committeeList.push({
123
name: "Loading...",
124
pronouns: "",
@@ -144,7 +144,7 @@ export default function AboutPage() {
144
</main>
145
);
146
} else {
147
- committeeList.push(...committee.slice(0, 8));
+ committeeList.push(...committee.slice(0, roleOrder.length));
148
149
150
return (
0 commit comments