Skip to content

Commit

Permalink
Missing else statement
Browse files Browse the repository at this point in the history
  • Loading branch information
uncoolzero committed Aug 31, 2023
1 parent a49cb95 commit cee95da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion projects/dex-ui/src/wells/chartDataLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ const loadFromGraph = async (sdk: BeanstalkSDK, well: Well, timePeriod: string)
} else {
goToNextPage = false;
}
}
} else {
goToNextPage = false;
}
}

while (goToNextPage === true);
Expand Down

0 comments on commit cee95da

Please sign in to comment.