aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/planSelection
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-24 15:19:10 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-24 15:19:10 +0200
commit102dc65cfec21d79542ff6b01a3ead121505251f (patch)
tree4afdb65b3f6c2741154798276c92057caf30dcf0 /src/features/planSelection
parentRemove Analytics (diff)
downloadferdium-app-102dc65cfec21d79542ff6b01a3ead121505251f.tar.gz
ferdium-app-102dc65cfec21d79542ff6b01a3ead121505251f.tar.zst
ferdium-app-102dc65cfec21d79542ff6b01a3ead121505251f.zip
Fix lint
Diffstat (limited to 'src/features/planSelection')
-rw-r--r--src/features/planSelection/containers/PlanSelectionScreen.js2
-rw-r--r--src/features/planSelection/index.js2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/features/planSelection/containers/PlanSelectionScreen.js b/src/features/planSelection/containers/PlanSelectionScreen.js
index d04668279..d202c924e 100644
--- a/src/features/planSelection/containers/PlanSelectionScreen.js
+++ b/src/features/planSelection/containers/PlanSelectionScreen.js
@@ -8,7 +8,7 @@ import FeaturesStore from '../../../stores/FeaturesStore';
8import UserStore from '../../../stores/UserStore'; 8import UserStore from '../../../stores/UserStore';
9import PlanSelection from '../components/PlanSelection'; 9import PlanSelection from '../components/PlanSelection';
10import ErrorBoundary from '../../../components/util/ErrorBoundary'; 10import ErrorBoundary from '../../../components/util/ErrorBoundary';
11import { planSelectionStore, GA_CATEGORY_PLAN_SELECTION } from '..'; 11import { planSelectionStore } from '..';
12 12
13const { dialog, app } = remote; 13const { dialog, app } = remote;
14 14
diff --git a/src/features/planSelection/index.js b/src/features/planSelection/index.js
index 81189207a..890be8871 100644
--- a/src/features/planSelection/index.js
+++ b/src/features/planSelection/index.js
@@ -3,8 +3,6 @@ import PlanSelectionStore from './store';
3 3
4const debug = require('debug')('Franz:feature:planSelection'); 4const debug = require('debug')('Franz:feature:planSelection');
5 5
6export const GA_CATEGORY_PLAN_SELECTION = 'planSelection';
7
8export const planSelectionStore = new PlanSelectionStore(); 6export const planSelectionStore = new PlanSelectionStore();
9 7
10export default function initPlanSelection(stores, actions) { 8export default function initPlanSelection(stores, actions) {