Hi folks! I'm working to test Herb/ReActionView against various GitHub projects and just ran into what I believe is an incorrect error: ```erb <% if @with_icon %> <div class="icon"> <% end %> ... <% if @with_icon %> </div> <% end %> ``` Raises `MissingClosingTagError/MissingOpeningTagError`, when it should not. The actual file highlighting this issue is https://github.com/primer/view_components/blob/c1845c65c3d7aaae3abb31f9846279783734974e/app/components/primer/alpha/auto_complete/auto_complete.html.erb, but the sample provided here raises the same errors.
Hi folks! I'm working to test Herb/ReActionView against various GitHub projects and just ran into what I believe is an incorrect error:
Raises
MissingClosingTagError/MissingOpeningTagError, when it should not.The actual file highlighting this issue is https://github.com/primer/view_components/blob/c1845c65c3d7aaae3abb31f9846279783734974e/app/components/primer/alpha/auto_complete/auto_complete.html.erb, but the sample provided here raises the same errors.