Skip to content

Commit

Permalink
Removing the console log
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicScrewdriver committed Nov 21, 2024
1 parent 42545a7 commit bd376eb
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ const convertDeprecatedWidgetsInContent = (
renameMap: WidgetRenameMap,
): string => {
const contentString = "content" in json ? json.content : json.explanation;
console.log("contentString", contentString);
return Object.keys(renameMap).reduce((newContent, oldKey) => {
const newKey = renameMap[oldKey];
return newKey ? newContent.replace(oldKey, newKey) : newContent;
Expand Down

0 comments on commit bd376eb

Please sign in to comment.