diff --git a/src/helpers/cms-content-helper.js b/src/helpers/cms-content-helper.js index 45f7943c..356ffb76 100644 --- a/src/helpers/cms-content-helper.js +++ b/src/helpers/cms-content-helper.js @@ -89,7 +89,7 @@ function mapStringToState(str) { const regexMatches = [...str.matchAll(regexExp)]; const globalStateMatches = regexMatches.filter(match => { return match[1] === dynamicStrings.GLOBAL_STATE; - }) + }); // Our final string value that will be built from the matches. let stringBuilder = "";