GitLab WebUI does not format jsx correctly when optional chaining is present
In the code WebUI formatting breaks when conditional chaining is used in expression inside of a template string. For example
// Testing something
const badVar = undefined;
const variable = `${badVar?.checkSomething} ha`;
console.log(variable);
if (variable) {
// info
[].map(elem => elem + 1);
}