Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Feb 29, 2024
1 parent 3a3f040 commit f238fe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/indexer-service/src/allocations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const monitorEligibleAllocations = ({
if (result.error) {
throw result.error
}
if (result.data.length == 0) {
if (result.data.allocations.length == 0) {
break
}
activeAllocations.push(result.data.allocations)
Expand Down Expand Up @@ -154,7 +154,7 @@ export const monitorEligibleAllocations = ({
if (result.error) {
throw result.error
}
if (result.data.length == 0) {
if (result.data.allocations.length == 0) {
break
}
recentlyClosedAllocations.push(result.data.allocations)
Expand Down

0 comments on commit f238fe6

Please sign in to comment.