Skip to content

Commit

Permalink
fix(geostore): remove hard coded values left behind
Browse files Browse the repository at this point in the history
  • Loading branch information
willian-viana committed Oct 28, 2024
1 parent 20662b1 commit 3681bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/geostore-provider/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const clearGeostore = createAction('clearGeostore');
export const fetchGeostore = createThunkAction(
'fetchGeostore',
(params) => (dispatch) => {
const { type, adm0, adm1 = 25, adm2 = 390, token } = params;
const { type, adm0, adm1, adm2, token } = params;

if (type && adm0) {
dispatch(setGeostoreLoading({ loading: true, error: false }));
Expand Down

0 comments on commit 3681bce

Please sign in to comment.