diff --git a/lib/theme/Loading.js b/lib/theme/Loading.js index 692fe085f9..8363912ef3 100644 --- a/lib/theme/Loading.js +++ b/lib/theme/Loading.js @@ -11,5 +11,8 @@ export default props => { ); } - return
Loading...
; + if (props.pastDelay) { + return
Loading...
; + } + return null; };