Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Meena committed Apr 30, 2024
1 parent 338068d commit a4d9fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/cloneObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function cloneObject<T>(source: T): T {
if (
"jQuery" in window &&
window.jQuery &&
source[key] instanceof window.jQuery
source[key] instanceof (window.jQuery as any)
) {
temp[key] = source[key];
} else {
Expand Down

0 comments on commit a4d9fbd

Please sign in to comment.