diff --git a/app/views/alt_styles/index.html.haml b/app/views/alt_styles/index.html.haml
index 215a13efa..306017535 100644
--- a/app/views/alt_styles/index.html.haml
+++ b/app/views/alt_styles/index.html.haml
@@ -24,7 +24,7 @@
selected: @color&.human_name, include_blank: "Color…"
= f.select :species, @all_species_names,
selected: @species&.human_name, include_blank: "Species…"
- = f.submit "Go"
+ = f.submit "Go", name: nil
= will_paginate @alt_styles, class: "rainbow-pool-pagination"
diff --git a/app/views/pet_types/index.html.haml b/app/views/pet_types/index.html.haml
index 7a73919b0..f3419b236 100644
--- a/app/views/pet_types/index.html.haml
+++ b/app/views/pet_types/index.html.haml
@@ -6,7 +6,7 @@
%legend Filter by:
= form.select :color, @color_names, selected: @selected_color&.human_name, include_blank: "Color…"
= form.select :species, @species_names, selected: @selected_species&.human_name, include_blank: "Species…"
- = form.submit "Go"
+ = form.submit "Go", name: nil
= will_paginate @pet_types, class: "rainbow-pool-pagination"