Skip to content

Commit

Permalink
style: run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
homer0 committed Oct 2, 2023
1 parent 770b83c commit 2e42918
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/fns/app.js
Expand Up @@ -98,10 +98,9 @@ const loadProviders = (directoryPath, list) => {
list
.map((modName) => {
// eslint-disable-next-line global-require, import/no-dynamic-require
const { provider: modProvider } = require(path.join(
directoryPath,
`${modName}.js`,
));
const { provider: modProvider } = require(
path.join(directoryPath, `${modName}.js`),
);
return modProvider;
})
.filter((modProvider) => modProvider)
Expand Down

0 comments on commit 2e42918

Please sign in to comment.