Skip to content

Commit

Permalink
Merge pull request #1353 from contentstack/bugfix/CS-44546
Browse files Browse the repository at this point in the history
Bugfix/CS-44546- Removed the return statement when checking for references
  • Loading branch information
cs-raj authored Mar 26, 2024
2 parents 1e4bc9b + 91ecc6d commit d6dc0d6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/contentstack-import/src/utils/entries-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -427,10 +427,8 @@ export const removeEntryRefsFromJSONRTE = (entry: Record<string, any>, ctSchema:
rteContent.push('<p></p>');
}
entry[element.uid] = rteContent;
return entry;
} else {
entry[element.uid] = '<p></p>';
return entry;
}
}
break;
Expand Down

0 comments on commit d6dc0d6

Please sign in to comment.