Skip to content

Commit 0af6c98

Browse files
committed
fix: correct loop iteration in subcourt details retrieval
1 parent 9ba40f8 commit 0af6c98

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)