diff --git a/app/helpers/check_answers_helper.rb b/app/helpers/check_answers_helper.rb index f51dc638a..a61dd31c2 100644 --- a/app/helpers/check_answers_helper.rb +++ b/app/helpers/check_answers_helper.rb @@ -30,9 +30,9 @@ module CheckAnswersHelper def display_answered_questions_summary(subsection_pages, case_log) if get_answered_questions_total(subsection_pages, case_log) == get_total_number_of_questions(subsection_pages) - "

You answered all the questions

".html_safe + '

You answered all the questions

'.html_safe else - "

You answered #{get_answered_questions_total(subsection_pages, case_log)} of #{get_total_number_of_questions(subsection_pages)} questions

+ "

You answered #{get_answered_questions_total(subsection_pages, case_log)} of #{get_total_number_of_questions(subsection_pages)} questions

#{create_next_missing_question_link(case_log['id'], subsection_pages, case_log)}".html_safe end end