Does LeetCode have a bracket indentation issue?

If I am say in a nested loop and then within that loop open an if statement, when I press enter to move the closing bracket of the if statement to the next line, it indents incorrectly, but then when I Ctrl Z and try again it indents correctly. e.g.

for (int i = 0; i < 10; i++) {
	for(int j = 0; j < 10; j++) {
		if (test) {
}
	}
}

notice when I pressed enter to send the closing bracket of the if to the next line, rather than correctly indenting, it goes to the start of the line. (this isn't unique to nested loops btw, just an example)

Does this happen to anyone else?

Comments (2)