Skip to content

Commit

Permalink
remove endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
AitorAlgorta committed Feb 20, 2024
1 parent dd7dadd commit f2f589c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/control-center/src/actions/connector/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export const updateConnectorConfigurationAction = createAction(
export const getComponentsAction = createAction(GET_COMPONENTS, (components: Components) => components)<Components>();

export const getConnectorsConfiguration = () => (dispatch: Dispatch<any>) => {
return HttpClientInstance.getComponents().then((response: Components) => {
dispatch(getComponentsAction(response));
return Promise.resolve(true);
});
// return HttpClientInstance.getComponents().then((response: Components) => {
// dispatch(getComponentsAction(response));
// return Promise.resolve(true);
// });
};

export const updateConnectorConfiguration =
Expand Down

0 comments on commit f2f589c

Please sign in to comment.