From 16fdfed57a691517558fece17e83bb6e0d19c77b Mon Sep 17 00:00:00 2001 From: Divyanshi Singh Date: Apr 04 2021 17:56:29 +0000 Subject: removed redundant api call from wizard.js --- diff --git a/src/wizard/Wizard.js b/src/wizard/Wizard.js index a9ecb3e..5f4c6a2 100644 --- a/src/wizard/Wizard.js +++ b/src/wizard/Wizard.js @@ -17,15 +17,6 @@ class Wizard extends Component { } componentDidMount() { - fetch(oraculumApiUrl_v1 + "actions/all") - .then((resp) => resp.json()) - .then((data) => { - this.setState({ - providers: data.providers, - all_actions: data.actions, - }) - }) - this.props.dispatch(loadWizardData()) }