Tags: patch Hello, I have a patch for a bug I found in js-ts-mode. When editing jsx blocks, the indentation does not work. For example, in a file with the following file with JSX code in it and js-ts-mode enabled ``` function App() { return (
); } ``` placing your cursor at the end of the opening div tag and pressing ENTER does not indent, instead there is no indentation. This patch corrects that by properly expanding the `js-jsx--treesit-indent-compatibility-bb1f97b' function, which returns some indent rules.