Skip to content

Commit e98325f

Browse files
authored
Merge pull request #236 from kleros/fix/court-info-fetching-logic
fix: correct court information retrieval logic
2 parents 9ba40f8 + 0af6c98 commit e98325f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ class App extends React.Component {
233233
}
234234
}
235235

236-
for (let i = 0; i < counter - 1; i++) {
236+
for (let i = 0; i < counter; i++) {
237237
subcourtURIs[i] = this.getSubCourtDetails(i);
238238
subcourts[i] = this.getSubcourt(i);
239239
}

0 commit comments

Comments
 (0)