aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-03-01 14:27:40 +0100
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-03-01 14:27:40 +0100
commit1947cad07e0d9c32ffb874bdea482e7ff037888b (patch)
treecaf17c27b5b02778a429bde83c49ab894b657b8a /src/features/workspaces
parentMerge branch 'develop' into feature/workspaces (diff)
downloadferdium-app-1947cad07e0d9c32ffb874bdea482e7ff037888b.tar.gz
ferdium-app-1947cad07e0d9c32ffb874bdea482e7ff037888b.tar.zst
ferdium-app-1947cad07e0d9c32ffb874bdea482e7ff037888b.zip
fix eslint issues
Diffstat (limited to 'src/features/workspaces')
-rw-r--r--src/features/workspaces/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/features/workspaces/index.js b/src/features/workspaces/index.js
index 8091f49fc..79c9b8ac9 100644
--- a/src/features/workspaces/index.js
+++ b/src/features/workspaces/index.js
@@ -15,9 +15,9 @@ export const filterServicesByActiveWorkspace = (services) => {
15 return services; 15 return services;
16}; 16};
17 17
18export const getActiveWorkspaceServices = (services) => { 18export const getActiveWorkspaceServices = services => (
19 return filterServicesByActiveWorkspace(services); 19 filterServicesByActiveWorkspace(services)
20}; 20);
21 21
22export default function initWorkspaces(stores, actions) { 22export default function initWorkspaces(stores, actions) {
23 const { features, user } = stores; 23 const { features, user } = stores;