1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-07 22:45:20 +02:00

Disable turbo on login forms

This commit is contained in:
Josh Pigford 2025-03-05 13:32:53 -06:00
parent 28bfcda50a
commit f7fa8fa085
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
header_title t(".title")
%>
<%= styled_form_with url: sessions_path, class: "space-y-4" do |form| %>
<%= styled_form_with url: sessions_path, class: "space-y-4", data: { turbo: false } do |form| %>
<%= form.email_field :email, label: t(".email"), autofocus: false, autocomplete: "email", required: "required", placeholder: t(".email_placeholder") %>
<%= form.password_field :password, label: t(".password"), required: "required" %>