diff --git a/app/views/legislation/processes/debate.html.erb b/app/views/legislation/processes/debate.html.erb
index 0849fa1c6..c6a365632 100644
--- a/app/views/legislation/processes/debate.html.erb
+++ b/app/views/legislation/processes/debate.html.erb
@@ -20,14 +20,6 @@
<% end %>
-
- <% if @process.questions.any? %>
-
-
-
<%= t("legislation.processes.debate.participate") %>
-
-
- <% end %>
diff --git a/config/locales/en/legislation.yml b/config/locales/en/legislation.yml
index 263dd4662..2e777da2a 100644
--- a/config/locales/en/legislation.yml
+++ b/config/locales/en/legislation.yml
@@ -54,7 +54,6 @@ en:
winners: Selected
debate:
empty_questions: There aren't any questions
- participate: Participate in the debate
index:
filter: Filter
filters:
diff --git a/config/locales/es/legislation.yml b/config/locales/es/legislation.yml
index 480fce46b..33693570e 100644
--- a/config/locales/es/legislation.yml
+++ b/config/locales/es/legislation.yml
@@ -54,7 +54,6 @@ es:
winners: Seleccionadas
debate:
empty_questions: No hay preguntas
- participate: Realiza tus aportaciones al debate previo participando en los siguientes temas.
index:
filter: Filtro
filters:
diff --git a/spec/system/legislation/processes_spec.rb b/spec/system/legislation/processes_spec.rb
index 5eccacfa5..7304fc543 100644
--- a/spec/system/legislation/processes_spec.rb
+++ b/spec/system/legislation/processes_spec.rb
@@ -255,7 +255,6 @@ describe "Legislation" do
end
expect(page).to have_content("This is the process homepage")
- expect(page).not_to have_content("Participate in the debate")
end
scenario "disabled", :with_frozen_time do
@@ -282,7 +281,6 @@ describe "Legislation" do
visit legislation_process_path(process)
expect(page).to have_content("This phase is not open yet")
- expect(page).not_to have_content("Participate in the debate")
end
scenario "open without questions" do
@@ -290,7 +288,6 @@ describe "Legislation" do
visit legislation_process_path(process)
- expect(page).not_to have_content("Participate in the debate")
expect(page).not_to have_content("This phase is not open yet")
end
@@ -303,7 +300,6 @@ describe "Legislation" do
expect(page).to have_content("Question 1")
expect(page).to have_content("Question 2")
- expect(page).to have_content("Participate in the debate")
expect(page).not_to have_content("This phase is not open yet")
end
diff --git a/spec/system/legislation/questions_spec.rb b/spec/system/legislation/questions_spec.rb
index 349ed0512..bbf55184c 100644
--- a/spec/system/legislation/questions_spec.rb
+++ b/spec/system/legislation/questions_spec.rb
@@ -17,8 +17,6 @@ describe "Legislation" do
scenario "shows question list" do
visit legislation_process_path(process)
- expect(page).to have_content("Participate in the debate")
-
expect(page).to have_content("Question 1")
expect(page).to have_content("Question 2")
expect(page).to have_content("Question 3")