Description
Describe the Bug
When there is code like this and you toggle comment on the middle line it shows like the 2nd example instead of 3rd. This is not valid so have to manually add and remove comments on both sides which is slow and terrible experience or delete the lines which you can forget to add again.
{array.map(each => <>
<div>{each}</div>
</>)}
{array.map(each => <>
// <div>{each}</div>
</>)}
{array.map(each => <>
{/* <div>{each}</div> */}
</>)}
Steps to Reproduce
Toggle comment on middle line.