@supernova-studio/client 0.48.30 → 0.48.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -6385,6 +6385,19 @@ function removeCommentSpansFromPage(content, definitions) {
6385
6385
  value: multiRichTextValue.value.map(removeCommentSpans)
6386
6386
  };
6387
6387
  }
6388
+ if (prop.type === "Table") {
6389
+ const tableValue = value;
6390
+ tableValue.value.forEach((r) => {
6391
+ r.cells.forEach((c) => {
6392
+ c.nodes.forEach((n) => {
6393
+ if (n.type === "RichText") {
6394
+ n.value = removeCommentSpans(n.value);
6395
+ }
6396
+ });
6397
+ });
6398
+ });
6399
+ return tableValue;
6400
+ }
6388
6401
  return value;
6389
6402
  });
6390
6403
  return content;