aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/features/todos/index.js2
-rw-r--r--src/features/workspaces/constants.js2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/features/todos/index.js b/src/features/todos/index.js
index 55956d1d7..573190881 100644
--- a/src/features/todos/index.js
+++ b/src/features/todos/index.js
@@ -3,8 +3,6 @@ import TodoStore from './store';
3 3
4const debug = require('debug')('Ferdi:feature:todos'); 4const debug = require('debug')('Ferdi:feature:todos');
5 5
6export const GA_CATEGORY_TODOS = 'Todos';
7
8export const todosStore = new TodoStore(); 6export const todosStore = new TodoStore();
9 7
10export default function initTodos(stores, actions) { 8export default function initTodos(stores, actions) {
diff --git a/src/features/workspaces/constants.js b/src/features/workspaces/constants.js
index 413afa1e8..2d1416ee0 100644
--- a/src/features/workspaces/constants.js
+++ b/src/features/workspaces/constants.js
@@ -2,5 +2,3 @@ export const WORKSPACES_ROUTES = {
2 ROOT: '/settings/workspaces', 2 ROOT: '/settings/workspaces',
3 EDIT: '/settings/workspaces/:action/:id', 3 EDIT: '/settings/workspaces/:action/:id',
4}; 4};
5
6export const GA_CATEGORY_WORKSPACES = 'Workspaces';