Skip to content

Commit 7101494

Browse files
committed
#RI-5889 - remove console.log
1 parent 74e0b90 commit 7101494

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

redisinsight/ui/src/utils/formatters/markdown/remarkSanitize.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export const remarkSanitize = (): (tree: Node) => void => (tree: any) => {
2121
visit(tree, 'html', (node) => {
2222
const dangerousAttrRegex = new RegExp(`\\s*(${dangerousAttributes})="[^"]*"`, 'gi')
2323

24-
console.log(node.value)
2524
if (node.value.match(dangerousAttrRegex)) {
2625
node.value = node.value.replace(dangerousAttrRegex, (match: string) => {
2726
const attr = match.toLowerCase().trim()

0 commit comments

Comments
 (0)