Skip to content

Commit 728de9a

Browse files
authored
Merge pull request #1052 from singnet/es-id-filter-removal
Es id filter removal
2 parents d2d9a8c + de4f8bd commit 728de9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Redux/actionCreators/ServiceActions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const fetchUserOrganizationsList = () => async (dispatch) => {
4343
const onlyUserOrgsFilter = () => async (dispatch) => {
4444
const userOrganizations = await dispatch(fetchUserOrganizationsList());
4545
const userOrganizationsId = userOrganizations.data.map((organization) => organization.org_id);
46-
const filterObj = { orgId: [...userOrganizationsId, process.env.REACT_APP_EXAMPLE_SERVICE_ORG_ID] };
46+
const filterObj = { orgId: userOrganizationsId };
4747

4848
return filterObj;
4949
};

0 commit comments

Comments
 (0)