We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ec71c8 commit ce1ccc1Copy full SHA for ce1ccc1
packages/sync-actions/src/product-actions.js
@@ -490,7 +490,9 @@ export function actionsMapCategories(diff) {
490
491
export function actionsMapCategoryOrderHints(diff) {
492
if (!diff.categoryOrderHints) return []
493
- // Here we should ignore this pattern as its still no changes happened [{},0,0]
+ // Ignore this pattern as its means no changes happened [{},0,0]
494
+ if (Array.isArray(diff.categoryOrderHints)) return []
495
+
496
return Object.keys(diff.categoryOrderHints).map((categoryId) => {
497
const hintChange = diff.categoryOrderHints[categoryId]
498
0 commit comments