This commit is contained in:
Kulbhushan Kaushik 2022-11-02 09:16:03 -04:00
parent 75eef92707
commit a8e44a6fa9

View file

@ -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 = "";