A couple components took a method argument. It defaulted to get and because it was always supplied, Rails UJS kicked in and made a form to submit instead of just clicking the link. For whatever reason, the UJS form always uses the POST method.
github.com/rails/rails@c941680274/actionview/app/assets/javascripts/rails-ujs.js (L393)
We don't want POST requests always popping off in the app when a GET will do so this converts some existing links that need the extra method, and removes the method arg from the components.