diff options
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 2fadf993f..511a8401a 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -1,4 +1,5 @@ import React, {useState, useEffect} from 'react' +import {whenWebCrypto} from './platform/polyfills.native' import {RootStore, setupState, RootStoreProvider} from './state' import * as Routes from './routes' @@ -7,7 +8,7 @@ function App() { // init useEffect(() => { - setupState().then(setRootStore) + whenWebCrypto.then(() => setupState()).then(setRootStore) }, []) // show nothing prior to init |