Anyone experiencing this,
I have a link
<%= link_to “New Board”, new_board_path, method: :get, data: { turbo: true, local: true }, class: “btn btn-outline-primary” %>
It’s calling the new action on the controller, which then renders and appends a modal to the body of the page using a new.turbo_stream.erb file.
The problem I see is when I click on that link multiple times, it keeps appending form tags.
I can stimulus remove them but I wish that’d those form tags would be removed after the AJAX call is finished automatically.