From 4146dc2b920eeb8165ff963b7bdcbd0fc2562ae0 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Tue, 4 Nov 2025 12:46:01 +0000 Subject: [PATCH] Disable Turbo prefetch on signup link This is because we have basic auth enabled there, so prefetching will trigger the popup. --- app/views/sessions/menus/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/sessions/menus/show.html.erb b/app/views/sessions/menus/show.html.erb index 535d2b903..1c9af55ed 100644 --- a/app/views/sessions/menus/show.html.erb +++ b/app/views/sessions/menus/show.html.erb @@ -26,7 +26,7 @@ <% if defined?(saas) %>
- <%= link_to saas.new_signup_membership_path, class: "btn btn--plain txt-link center txt-small" do %> + <%= link_to saas.new_signup_membership_path, class: "btn btn--plain txt-link center txt-small", data: { turbo_prefetch: false } do %> Sign up for a new Fizzy account <% end %>