diff --git a/app/views/account/show.html.erb b/app/views/account/show.html.erb
index 64edd1ae5..a0a782f2b 100644
--- a/app/views/account/show.html.erb
+++ b/app/views/account/show.html.erb
@@ -117,19 +117,23 @@
<% if feature?("user.recommendations_on_debates") %>
- <%= f.check_box :recommended_debates, title: t("account.show.show_debates_recommendations"), label: false %>
-
- <%= t("account.show.show_debates_recommendations") %>
-
+ <%= f.label :recommended_debates do %>
+ <%= f.check_box :recommended_debates, title: t("account.show.show_debates_recommendations"), label: false %>
+
+ <%= t("account.show.show_debates_recommendations") %>
+
+ <% end %>
<% end %>
<% if feature?("user.recommendations_on_proposals") %>
- <%= f.check_box :recommended_proposals, title: t("account.show.show_proposals_recommendations"), label: false %>
-
- <%= t("account.show.show_proposals_recommendations") %>
-
+ <%= f.label :recommended_proposals do %>
+ <%= f.check_box :recommended_proposals, title: t("account.show.show_proposals_recommendations"), label: false %>
+
+ <%= t("account.show.show_proposals_recommendations") %>
+
+ <% end %>
<% end %>
<% end %>