diff options
author | Ansh <anshnanda10@gmail.com> | 2023-06-15 14:45:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-15 16:45:14 -0500 |
commit | 17e7590bcd36f9ec3433cb2714a9319fac4aeebf (patch) | |
tree | 71edb7056abedd460d275944711e4fc001a2ffe6 /src/App.web.tsx | |
parent | 1695ae34dbd08432f21f524ed32ad7012bfb201e (diff) | |
download | voidsky-17e7590bcd36f9ec3433cb2714a9319fac4aeebf.tar.zst |
[APP-511] metrics overhaul: frontend work (#506)
* WIP * fix types and update imports * wip * tagged events that should be server side * remove server-side analytics * remove useless import * add additional profile header events * remove useless import * track follow/unfollow clicks * add missing types
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r-- | src/App.web.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx index 7570db44e..b0f949b8b 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -3,7 +3,7 @@ import 'lib/sentry' // must be relatively on top import {SafeAreaProvider} from 'react-native-safe-area-context' import {RootSiblingParent} from 'react-native-root-siblings' import * as view from './view/index' -import * as analytics from 'lib/analytics' +import * as analytics from 'lib/analytics/analytics' import {RootStoreModel, setupState, RootStoreProvider} from './state' import {Shell} from './view/shell/index' import {ToastContainer} from './view/com/util/Toast.web' |