fix unintentionally long abbreviations

This commit is contained in:
byte[] 2021-03-31 21:30:16 -04:00
parent a858030e4c
commit 4ce962ef57

View file

@ -117,7 +117,9 @@ defmodule PhilomenaWeb.ProfileView do
nil
list ->
Enum.join(list)
list
|> Enum.take(4)
|> Enum.join()
end
end