Skip to content

Commit

Permalink
reduce reliance on lodash
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Low <[email protected]>
  • Loading branch information
CollinBeczak and jake-low authored Dec 3, 2024
1 parent f231806 commit 08e8d82
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 @@ -62,7 +62,7 @@ export const fetchBoundedTaskMarkers = function(criteria, limit = 50, skipDispat
return null
}

const filters = _get(criteria, 'filters', {})
const filters = criteria.filters ?? {};
const searchParameters = generateSearchParametersString(
filters,
null,
Expand Down

0 comments on commit 08e8d82

Please sign in to comment.