diff --git a/src/App.js b/src/App.js index c098dfe..eb52b3e 100644 --- a/src/App.js +++ b/src/App.js @@ -110,8 +110,8 @@ class App extends IPCContainer { const remoteSupported = this.props.LocationsLookup[selectedVersion] && this.props.LocationsLookup[selectedVersion].supports_remote; - const gooboxS3Supported = this.props.LocationsLookup[selectedVersion] && - this.props.LocationsLookup[selectedVersion].gooboxs3_support; + const s3Supported = this.props.LocationsLookup[selectedVersion] && + this.props.LocationsLookup[selectedVersion].s3_support; const skynetSupported = this.props.LocationsLookup[selectedVersion] && this.props.LocationsLookup[selectedVersion].skynet_support; @@ -215,7 +215,7 @@ class App extends IPCContainer { mainContent.push(( - { const providerList = Constants.PROVIDER_LIST.filter(i => { - return ((i === 'GooboxS3') && this.props.gooboxS3Supported) || + return ((i === 'S3') && this.props.s3Supported) || ((i === 'Skynet') && this.props.skynetSupported) || ((i === 'ScPrime') && this.props.scPrimeSupported) || ((i === 'Sia') && this.props.siaSupported);