diff options
| author | bezvershenko <lbezvershenkoo@yandex.ru> | 2019-03-12 21:54:03 +0400 |
|---|---|---|
| committer | bezvershenko <lbezvershenkoo@yandex.ru> | 2019-03-12 21:54:03 +0400 |
| commit | b2998a1f7b64f93ffd9ae90f85ca0581015d589a (patch) | |
| tree | baa7a90a0b96b255f4245f6dad247ae258dc4449 /frontend/app/app.js | |
| parent | 4f007a5ea318b7919467fdf93cebf151a42a2f63 (diff) | |
Add host's constant for backend ip-address
Diffstat (limited to 'frontend/app/app.js')
| -rw-r--r-- | frontend/app/app.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/frontend/app/app.js b/frontend/app/app.js index f469e15..9ae6dd7 100644 --- a/frontend/app/app.js +++ b/frontend/app/app.js @@ -12,7 +12,6 @@ import { withRkTheme } from 'react-native-ui-kitten'; import { AppRoutes } from './config/navigation/routesBuilder'; import * as Screens from './screens'; import { bootstrap } from './config/bootstrap'; -import track from './config/analytics'; import { data } from './data'; bootstrap(); @@ -53,9 +52,6 @@ export default class App extends React.Component { current: this.getCurrentRouteName(current), previous: this.getCurrentRouteName(previous), }; - if (screen.previous !== screen.current) { - track(screen.current); - } }; getCurrentRouteName = (navigation) => { |