Skip to content

Commit

Permalink
fix: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Jun 25, 2020
1 parent a8489cd commit 9b3a8d5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ui/components/src/Markdown/MarkdownComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export const markdownComponents: MarkdownComponentType = {
const { className = '', children } = codeProps || {};
const arrClass = className.split('-');
const mdxLanguage = arrClass.length === 2 ? arrClass[1] : 'js';
console.log(props);
const language = mdxLanguageMap[mdxLanguage] || mdxLanguage;
return <Source language={language}>{children}</Source>;
},
Expand Down

0 comments on commit 9b3a8d5

Please sign in to comment.