Skip to content

Commit

Permalink
fix(lodash): Try and fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bubonicfred committed Jun 26, 2024
1 parent 7b4efb1 commit 3ff6142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/helpers/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export class Util {
for (const source of sources) {
for (const key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
this.target[key] = source[key];
target[key] = source[key]; // Corrected line
}
}
}
Expand Down

0 comments on commit 3ff6142

Please sign in to comment.