Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishn0109 committed Jun 8, 2024
1 parent 7b35316 commit e5866bb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/meteor/client/components/MarkdownText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ const MarkdownText: FC<Partial<MarkdownTextParams>> = ({
const markedHtml = /inline/.test(variant)
? marked.parseInline(new Option(content).innerHTML, markedOptions)
: marked.parse(new Option(content).innerHTML, markedOptions);
console.log(marked.parse(new Option(content).innerHTML), new Option(content).innerHTML, 'content');
if (parseEmoji) {
// We are using the old emoji parser here. This could come
// with additional processing use, but is the workaround available right now.
Expand Down

0 comments on commit e5866bb

Please sign in to comment.