diff options
author | Vitaly Takmazov | 2018-10-24 14:37:42 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | e2472c77ad37c11996093418d2ee1a5e88db938d (patch) | |
tree | fecf0b7312c750b47cbbfe11d702c6399edca73b /vnext/src/index.js | |
parent | 955f75f1c049e4b81f2995ef4e90f5d4a657077a (diff) |
Fix Suspense warning
Diffstat (limited to 'vnext/src/index.js')
-rw-r--r-- | vnext/src/index.js | 2 |
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> ); |