From 3eebdb241e622e1301d56015c557a3643bc23604 Mon Sep 17 00:00:00 2001 From: Nat Dean-Lewis Date: Tue, 2 Jun 2026 15:49:01 +0100 Subject: [PATCH] feat: add missing helpers --- app/components/bulk_upload_summary_component.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/bulk_upload_summary_component.rb b/app/components/bulk_upload_summary_component.rb index beb850736..2df854536 100644 --- a/app/components/bulk_upload_summary_component.rb +++ b/app/components/bulk_upload_summary_component.rb @@ -28,8 +28,8 @@ class BulkUploadSummaryComponent < ViewComponent::Base text = count > 1 ? (plural_text || singular_text.pluralize(count)) : singular_text helpers.content_tag(:p, class: "govuk-!-font-size-16 govuk-!-margin-bottom-1") do - concat(helpers.content_tag(:strong, count)) - concat(" #{text}") + helpers.concat(helpers.content_tag(:strong, count)) + helpers.concat(" #{text}") end end