#### TypeScript: Print comment following a JSX element with generic ([#6209] by [@duailibe]) Previous versions would not print this comment, this has been fixed in this version. ```ts // Input const comp = ( // This comment goes missing value={4} > Test ); // Output (Prettier stable) const comp = value={4}>Test; // Output (Prettier master) const comp = ( // This comment goes missing value={4} > Test ); ``` [#6209]: https://github.com/prettier/prettier/pull/6209 [@duailibe]: https://github.com/duailibe