aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/UserStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-08-22 21:40:07 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-08-22 21:40:07 +0200
commit30a891a83ce4bbbbaa6f6f3a13d2031b0a58188f (patch)
tree41dde64402f6a5ff93796ff5c541bf4dcf766542 /src/stores/UserStore.js
parentRe-adding package-lock (diff)
downloadferdium-app-30a891a83ce4bbbbaa6f6f3a13d2031b0a58188f.tar.gz
ferdium-app-30a891a83ce4bbbbaa6f6f3a13d2031b0a58188f.tar.zst
ferdium-app-30a891a83ce4bbbbaa6f6f3a13d2031b0a58188f.zip
Fix eslint errors
Diffstat (limited to 'src/stores/UserStore.js')
-rw-r--r--src/stores/UserStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js
index bd451661a..d813e97b1 100644
--- a/src/stores/UserStore.js
+++ b/src/stores/UserStore.js
@@ -232,12 +232,12 @@ export default class UserStore extends Store {
232 const recipes = services.filter((obj, pos, arr) => arr.map(mapObj => mapObj.recipe.id).indexOf(obj.recipe.id) === pos).map(s => s.recipe.id); 232 const recipes = services.filter((obj, pos, arr) => arr.map(mapObj => mapObj.recipe.id).indexOf(obj.recipe.id) === pos).map(s => s.recipe.id);
233 233
234 // Install recipes 234 // Install recipes
235 for (const recipe of recipes) { 235 for (const recipe of recipes) { // eslint-disable-line no-unused-vars
236 // eslint-disable-next-line 236 // eslint-disable-next-line
237 await this.stores.recipes._install({ recipeId: recipe }); 237 await this.stores.recipes._install({ recipeId: recipe });
238 } 238 }
239 239
240 for (const service of services) { 240 for (const service of services) { // eslint-disable-line no-unused-vars
241 this.actions.service.createFromLegacyService({ 241 this.actions.service.createFromLegacyService({
242 data: service, 242 data: service,
243 }); 243 });