diff --git a/pages/result/components/ExportAnalysisSection/ExportAnalysisSection.js b/pages/result/components/ExportAnalysisSection/ExportAnalysisSection.js index 3beeed31..33492399 100644 --- a/pages/result/components/ExportAnalysisSection/ExportAnalysisSection.js +++ b/pages/result/components/ExportAnalysisSection/ExportAnalysisSection.js @@ -299,10 +299,8 @@ class ExportAnalysisSection extends Component { {this.getIncompatibleMessage() && this.renderIncompatible()} {analysisState === State.REJECTED && this.renderFailure()} - { - (analysisState === State.EXPORTS_FULFILLED || analysisState === State.SIZES_FULFILLED) ? - this.renderSuccess() : this.renderProgress() - } + {(analysisState === State.EXPORTS_FULFILLED || analysisState === State.SIZES_FULFILLED) && this.renderSuccess()} + { analysisState === State.IN_PROGRESS } ); }