Skip to content

Commit 351cc72

Browse files
committed
add missing continue
1 parent 173802a commit 351cc72

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/utils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ function mergeObject<TObject extends Record<string, unknown>>(
131131
if (!isMergeableObject(sourceProperty)) {
132132
// If source value is any other value we need to set the source value it directly.
133133
destination[key] = sourceProperty;
134+
// eslint-disable-next-line no-continue
135+
continue;
134136
}
135137

136138
const targetProperty = targetObject?.[key];

0 commit comments

Comments
 (0)