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 6f02a5b commit 157bde5Copy full SHA for 157bde5
components/notion/sources/updated-page/updated-page.mjs
@@ -82,7 +82,7 @@ export default {
82
return Object.keys(properties);
83
},
84
calculateHash(property) {
85
- const clone = JSON.parse(JSON.stringify(property));
+ const clone = structuredClone(property);
86
this.maybeRemoveFileSubItems(clone);
87
return md5(JSON.stringify(clone));
88
0 commit comments