Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbritos committed Jan 28, 2021
1 parent e4d8e45 commit d08128a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/get_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ module.exports = () => ({
});
});
}
});
});
10 changes: 9 additions & 1 deletion templates/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ const render = (template, locals = {}) => {
};

module.exports = ({
stylesheetTag, customCSSTag, currentUser, matchingUsers, dynamicSettings, identities, locale, params, token
stylesheetTag,
customCSSTag,
currentUser,
matchingUsers,
dynamicSettings,
identities,
locale,
params,
token
}) =>
Promise.all([buildAuth0Widget(dynamicSettings, identities, locale), getStorage().read()])
.then(([widget, data]) => {
Expand Down
2 changes: 1 addition & 1 deletion templates/utils/extensionScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ module.exports = (currentUser, matchingUsers, params, token) => `
bootstrapApp(currentUser, matchingUsers, ${JSON.stringify(params)}, ${JSON.stringify(token)});
</script>
`;
`;

0 comments on commit d08128a

Please sign in to comment.