diff --git a/src/contexts/Config.jsx b/src/contexts/Config.jsx index 63bc2525a8..9fe44da64c 100644 --- a/src/contexts/Config.jsx +++ b/src/contexts/Config.jsx @@ -24,7 +24,10 @@ class Provider extends Component { } componentDidMount () { - this.fetchConfig(); + const { value } = this.props; + if (!value) { + this.fetchConfig(); + } } async fetchConfig () {