diff options
author | dan <dan.abramov@gmail.com> | 2023-11-07 04:30:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 04:30:00 +0000 |
commit | fa821943da1789ae53d17ff1739a2073ca6c8abb (patch) | |
tree | b9596f348d669e47fae44341d742b735de22ffe3 /src/App.native.tsx | |
parent | 7ffbee18b578cc7f6d5eff6b7b4740eeb278d387 (diff) | |
download | voidsky-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.tsx | 3 |
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 |