Link_to has missing parameters

I have this:
<%= link_to ‘Pasar al Pago’, incluir_abono_detalle_pago_path(@pago, abono_id: abono.id), data: { confirm: ‘Incluir el abono en los detalles de pago?’}, type:“button”, class: “btn btn-warning btn-sm”%>
and this generates:
Started GET “/pagos/2053/incluir_abono_detalle?abono_id=3” for 127.0.0.1 at 2023-01-25 13:57:25 -0300
Processing by PagosController#incluir_abono_detalle as HTML
Parameters: {“abono_id”=>“3”, “id”=>“2053”} … and this works fine…
BUT: No confirm message is shown.
I changed it to this:
<%= link_to ‘Pasar al Pago’, incluir_abono_detalle_pago_path(@pago, abono_id: abono.id), data: { turbo_method: :get, turbo_confirm: ‘Incluir el abono en los detalles de pago?’}, type:“button”, class: “btn btn-warning btn-sm” %>
And this generates:
Started GET “/pagos/2053/incluir_abono_detalle” for 127.0.0.1 at 2023-01-25 14:26:04 -0300
Processing by PagosController#incluir_abono_detalle as HTML
Parameters: {“id”=>“2053”} … where a parameter is missing causing the controller to fail.
How can i fix it?.
Thanks.