Skip to content

Commit cdcfa3a

Browse files
committed
fix: temp fix on homepage
1 parent b738406 commit cdcfa3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/hooks/queries/useHomePageQuery.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ const homePageQuery = graphql(`
1111
disputes(first: 3) {
1212
id
1313
}
14-
counters(where: { id_gt: $timeframe }) {
14+
counters(first: 1000, where: { id_gt: $timeframe }) {
1515
id
1616
stakedPNK
1717
paidETH
1818
redistributedPNK
1919
activeJurors
2020
cases
2121
}
22-
courts(orderBy: id, orderDirection: asc) {
22+
courts(first: 1000, orderBy: id, orderDirection: asc) {
2323
id
2424
name
2525
numberDisputes

0 commit comments

Comments
 (0)