Skip to content

Commit

Permalink
feat(list): Fix local styleguide by correcting the path to the list i…
Browse files Browse the repository at this point in the history
…tems in the config file.
  • Loading branch information
ryanoglesby08 committed Sep 13, 2017
1 parent fabe775 commit a3de9eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/styleguide.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ module.exports = {
components() {
return compact([
toggleByEnv('Lists', path.resolve('src/components/Lists/UnorderedList/UnorderedList.jsx')),
toggleByEnv('Lists', path.resolve('src/components/Lists/UnorderedList/UnorderedItem/UnorderedItem.jsx')),
toggleByEnv('Lists', path.resolve('src/components/Lists/UnorderedList/UnorderedItem.jsx')),
toggleByEnv('Lists', path.resolve('src/components/Lists/OrderedList/OrderedList.jsx')),
toggleByEnv('Lists', path.resolve('src/components/Lists/OrderedList/OrderedItem/OrderedItem.jsx'))
toggleByEnv('Lists', path.resolve('src/components/Lists/OrderedList/OrderedItem.jsx'))
])
}
},
Expand Down

0 comments on commit a3de9eb

Please sign in to comment.