Disable Turbo on registration form

This commit is contained in:
Andreas Nedbal 2023-10-17 21:48:49 +02:00
parent 97a826be33
commit fce3d7c587
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
.card.mt-3
.card-body
%h1= t(".title")
= bootstrap_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
= bootstrap_form_for(resource, as: resource_name, url: registration_path(resource_name), data: { turbo: false }) do |f|
= render "devise/shared/error_messages", resource: resource
= render "layouts/messages"