From 964390501ef1461a9e037ba62bbf896e124a1b3b Mon Sep 17 00:00:00 2001 From: Jake Archibald Date: Wed, 11 Nov 2020 16:16:24 +0000 Subject: [PATCH] Fix initial loading state --- src/client/lazy-app/Compress/Results/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/lazy-app/Compress/Results/index.tsx b/src/client/lazy-app/Compress/Results/index.tsx index eee5a5b7..3c131ca4 100644 --- a/src/client/lazy-app/Compress/Results/index.tsx +++ b/src/client/lazy-app/Compress/Results/index.tsx @@ -36,7 +36,7 @@ const loadingReactionDelay = 500; export default class Results extends Component { state: State = { - showLoadingState: false, + showLoadingState: this.props.loading, }; /** The timeout ID between entering the loading state, and changing UI */