Inside `_display` partial I add a `link_to` to show product show view, but it doesn't work. But when I add `turbo_frame: _top` it works which is not an ideal solution.
<%= turbo_frame_tag "products_display" do %>
<%= content_tag :div, id: dom_id(product) do %>
<%= link_to product_path(product), data: {turbo_frame:"_top"} do %>
.......
<% end %>
<% end %>
<% end %>
Any idea on how to keep link_to execute by hotwire? Thanks...