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 fa75d46 commit b0a880aCopy full SHA for b0a880a
packages/core/src/lib/pseudopattern_hunter.js
@@ -67,9 +67,9 @@ pseudopattern_hunter.prototype.find_pseudopatterns = function(
67
(objValue, srcValue) => {
68
if (
69
_.isArray(objValue) &&
70
- patternlab.config.patternMergeVariantArrays
+ !patternlab.config.patternMergeVariantArrays
71
) {
72
- return objValue.concat(srcValue);
+ return srcValue;
73
}
74
// Lodash will only check for "undefined" and eslint needs a consistent
75
// return so do not remove
0 commit comments