aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/delayApp')
-rw-r--r--src/features/delayApp/Component.js4
-rw-r--r--src/features/delayApp/index.js3
2 files changed, 0 insertions, 7 deletions
diff --git a/src/features/delayApp/Component.js b/src/features/delayApp/Component.js
index ff0f1f2f8..7e09c2ea5 100644
--- a/src/features/delayApp/Component.js
+++ b/src/features/delayApp/Component.js
@@ -4,8 +4,6 @@ import { inject, observer } from 'mobx-react';
4import { defineMessages, intlShape } from 'react-intl'; 4import { defineMessages, intlShape } from 'react-intl';
5import injectSheet from 'react-jss'; 5import injectSheet from 'react-jss';
6 6
7import { gaEvent } from '../../lib/analytics';
8
9import Button from '../../components/ui/Button'; 7import Button from '../../components/ui/Button';
10 8
11import { config } from '.'; 9import { config } from '.';
@@ -65,8 +63,6 @@ export default @inject('actions') @injectSheet(styles) @observer class DelayApp
65 const { actions } = this.props; 63 const { actions } = this.props;
66 64
67 actions.ui.openSettings({ path: 'user' }); 65 actions.ui.openSettings({ path: 'user' });
68
69 gaEvent('DelayApp', 'subscribe_click', 'Delay App Feature');
70 } 66 }
71 67
72 render() { 68 render() {
diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js
index 39fae3b20..5fc553684 100644
--- a/src/features/delayApp/index.js
+++ b/src/features/delayApp/index.js
@@ -3,7 +3,6 @@ import moment from 'moment';
3import DelayAppComponent from './Component'; 3import DelayAppComponent from './Component';
4 4
5import { DEFAULT_FEATURES_CONFIG } from '../../config'; 5import { DEFAULT_FEATURES_CONFIG } from '../../config';
6import { gaEvent, gaPage } from '../../lib/analytics';
7 6
8const debug = require('debug')('Franz:feature:delayApp'); 7const debug = require('debug')('Franz:feature:delayApp');
9 8
@@ -55,8 +54,6 @@ export default function init(stores) {
55 debug(`App will be delayed for ${config.delayDuration / 1000}s`); 54 debug(`App will be delayed for ${config.delayDuration / 1000}s`);
56 55
57 setVisibility(true); 56 setVisibility(true);
58 gaPage('/delayApp');
59 gaEvent('DelayApp', 'show', 'Delay App Feature');
60 57
61 timeLastDelay = moment(); 58 timeLastDelay = moment();
62 shownAfterLaunch = true; 59 shownAfterLaunch = true;