Skip to content

Commit

Permalink
remove unused param from new endpoint call function
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak committed Jun 3, 2024
1 parent 17fa409 commit 6d15d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/Task/BoundedTask.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const receiveBoundedTasks = function(tasks,
* criteria, which should at least include a boundingBox field, and may
* optionally include a filters field with additional constraints
*/
export const fetchBoundedTaskMarkers = function(criteria, limit = 50, skipDispatch = false, ignoreLocked = true, withGeometries) {
export const fetchBoundedTaskMarkers = function(criteria, limit = 50, skipDispatch = false, ignoreLocked = true) {
return function(dispatch) {
if (!skipDispatch) {
// The map is either showing task clusters or bounded tasks so we shouldn't
Expand Down

0 comments on commit 6d15d50

Please sign in to comment.