style: fix linting issues met ESLint
This commit is contained in:
parent
a69e2625af
commit
bdbfe380be
4 changed files with 5 additions and 5 deletions
|
@ -26,7 +26,7 @@ const learningPathService = {
|
|||
const userContentLearningPaths = await databaseLearningPathProvider.fetchLearningPaths(userContentHruids, language, source, personalizedFor);
|
||||
const nonUserContentLearningPaths = await dwengoApiLearningPathProvider.fetchLearningPaths(nonUserContentHruids, language, source, personalizedFor);
|
||||
|
||||
let result = (userContentLearningPaths.data || []).concat(nonUserContentLearningPaths.data || []);
|
||||
const result = (userContentLearningPaths.data || []).concat(nonUserContentLearningPaths.data || []);
|
||||
|
||||
return {
|
||||
data: result,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue