diff options
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r-- | src/App.web.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx index 58754d8e4..959a69c54 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -7,6 +7,7 @@ import {RootSiblingParent} from 'react-native-root-siblings' import {SafeAreaProvider} from 'react-native-safe-area-context' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import * as Sentry from '@sentry/react-native' import {QueryProvider} from '#/lib/react-query' import {Provider as StatsigProvider} from '#/lib/statsig/statsig' @@ -207,4 +208,4 @@ function App() { ) } -export default App +export default Sentry.wrap(App) |