Apply suggestion to src/services/theme_data/theme_data.service.js

This commit is contained in:
HJ 2020-07-14 13:04:00 +00:00
parent 40e3595ad3
commit 5af0949491

View file

@ -132,7 +132,6 @@ export const topoSort = (
// The index thing is to make sorting stable on browsers
// where Array.sort() isn't stable
return output.map((data, index) => ({ data, index })).sort(({ data: a, index: ai }, { data: b, index: bi }) => {
console.log(a, b, ai, bi)
const depsA = getDeps(a, inheritance).length
const depsB = getDeps(b, inheritance).length