Example code that might cause this issue:
const a = () => {
console.log('something');
if (somecondition) {
return;
}
}
The resultant code looks something like this:
const a = () => {
console.group('a');
console.log('something');
if (somecondition) {
console.groupEnd();
return;
}
// another groupend should've been added here
}
Example code that might cause this issue:
The resultant code looks something like this: