add more descriptive error handling for optional exts

This commit is contained in:
Lachlan Kermode
2019-01-17 09:40:04 +00:00
parent 08d44c79c7
commit 79af252b33
2 changed files with 29 additions and 20 deletions

View File

@@ -257,7 +257,6 @@ export const selectCategories = createSelector(
categories.map(cat => {
cat.active = (!cat.hasOwnProperty('active')) ? false : cat.active
});
console.log(categories)
return categories;
}
)