about summary refs log tree commit diff
path: root/src/App.native.tsx
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2023-11-07 04:30:00 +0000
committerGitHub <noreply@github.com>2023-11-07 04:30:00 +0000
commitfa821943da1789ae53d17ff1739a2073ca6c8abb (patch)
treeb9596f348d669e47fae44341d742b735de22ffe3 /src/App.native.tsx
parent7ffbee18b578cc7f6d5eff6b7b4740eeb278d387 (diff)
downloadvoidsky-fa821943da1789ae53d17ff1739a2073ca6c8abb.tar.zst
Use Sentry only for errors (#1776)
* Use Sentry only for errors

* Fix merge
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r--src/App.native.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx
index f0b1a1bc5..3250ea563 100644
--- a/src/App.native.tsx
+++ b/src/App.native.tsx
@@ -10,7 +10,6 @@ import {QueryClientProvider} from '@tanstack/react-query'
 
 import 'view/icons'
 
-import {withSentry} from 'lib/sentry'
 import {ThemeProvider} from 'lib/ThemeContext'
 import {s} from 'lib/styles'
 import {RootStoreModel, setupState, RootStoreProvider} from './state'
@@ -62,4 +61,4 @@ const App = observer(function AppImpl() {
   )
 })
 
-export default withSentry(App)
+export default App