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 9c3167255..c9342f046 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -15,6 +15,7 @@ import * as SplashScreen from 'expo-splash-screen' import * as SystemUI from 'expo-system-ui' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import * as Sentry from '@sentry/react-native' import {KeyboardControllerProvider} from '#/lib/hooks/useEnableKeyboardController' import {QueryProvider} from '#/lib/react-query' @@ -236,4 +237,4 @@ function App() { ) } -export default App +export default Sentry.wrap(App) |