aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/index.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-10-24 14:37:42 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commite2472c77ad37c11996093418d2ee1a5e88db938d (patch)
treefecf0b7312c750b47cbbfe11d702c6399edca73b /vnext/src/index.js
parent955f75f1c049e4b81f2995ef4e90f5d4a657077a (diff)
Fix Suspense warning
Diffstat (limited to 'vnext/src/index.js')
-rw-r--r--vnext/src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/index.js b/vnext/src/index.js
index b64d2336..d48d433a 100644
--- a/vnext/src/index.js
+++ b/vnext/src/index.js
@@ -25,7 +25,7 @@ function LoadingView(props) {
const Juick = lazy(() => import('./App'));
const JuickApp = () => (
- <Suspense fallback={LoadingView}>
+ <Suspense fallback={LoadingView()}>
<Juick />
</Suspense>
);