Skip to content

Commit

Permalink
fix: use tree_associated=false when getting captures to match
Browse files Browse the repository at this point in the history
  • Loading branch information
ZavenArra committed Feb 3, 2022
1 parent 8c9661e commit 9174d4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/api/treeTrackerApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ export default {
},
fetchCapturesToMatch(currentPage, abortController) {
return fetch(
`${CAPTURE_MATCH_API}/captures?limit=${1}&offset=${currentPage - 1}`,
`${CAPTURE_MATCH_API}/captures?tree_associated=false&limit=${1}&offset=${
currentPage - 1
}`,
{
headers: {
Authorization: session.token,
Expand Down

0 comments on commit 9174d4d

Please sign in to comment.