Skip to content

Commit

Permalink
Merge pull request #27 from dymaxionlabs/page_limit
Browse files Browse the repository at this point in the history
Page limit
  • Loading branch information
douglasemilio authored Mar 17, 2023
2 parents 4020428 + 59288b1 commit 28dae8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aqua/components/home/MapsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class MapsContent extends React.Component {

try {
const response = await axios.get(buildApiUrl("/maps/"), {
params: { project: projectId },
params: { project: projectId, limit: 500, offset: 0 },
headers: { Authorization: this.props.token },
});
this.setState({ maps: response.data.results });
Expand Down

0 comments on commit 28dae8e

Please sign in to comment.