From 626fbe6de872ef264dea563b6457a8e8785853ae Mon Sep 17 00:00:00 2001 From: Oleg Aksenov Date: Sun, 3 Oct 2021 18:56:37 +0300 Subject: [PATCH] Update src/diagrams/common/common.js Co-authored-by: Matthieu MOREL --- src/diagrams/common/common.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/diagrams/common/common.js b/src/diagrams/common/common.js index 263af5cf7..62a177440 100644 --- a/src/diagrams/common/common.js +++ b/src/diagrams/common/common.js @@ -65,7 +65,6 @@ const sanitizeMore = (text, config) => { }; export const sanitizeText = (text, config) => { - // console.log('security level', config.securityLevel); if (!text) return text; const txt = DOMPurify.sanitize(sanitizeMore(text, config)); return txt;