diff --git a/src/languageHandler.js b/src/languageHandler.js index e5656e5f69..179bb2d1d0 100644 --- a/src/languageHandler.js +++ b/src/languageHandler.js @@ -177,10 +177,6 @@ export function replaceByRegexes(text, mapping) { // If we insert any components we need to wrap the output in a span. React doesn't like just an array of components. let shouldWrapInSpan = false; - if (text === "You are now ignoring %(userId)s") { - debugger; - } - for (const regexpString in mapping) { // TODO: Cache regexps const regexp = new RegExp(regexpString, "g");