From 90c9dce8f36000756afd6b05e3257f24a69be444 Mon Sep 17 00:00:00 2001 From: jazairi <16103405+jazairi@users.noreply.github.com> Date: Thu, 30 May 2024 09:30:31 -0400 Subject: [PATCH] Address code review feedback --- app/views/shared/_contributors.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/shared/_contributors.html.erb b/app/views/shared/_contributors.html.erb index ebe4b52c..9e0cf346 100644 --- a/app/views/shared/_contributors.html.erb +++ b/app/views/shared/_contributors.html.erb @@ -1,5 +1,5 @@ <%= return if contributors.blank? %> -<% contributors.uniq.map do |contributor| %> +<% contributors.uniq do |contributor| %>
  • <%= link_to contributor['value'], results_path({ advanced: true, contributors: contributor['value'] }) %>
  • <% end %>