Skip to content

Commit

Permalink
♿️ Missing container element #2743
Browse files Browse the repository at this point in the history
  • Loading branch information
padms committed Jan 20, 2025
1 parent f3d5923 commit c3631a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/templates/magazine/MagazinePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ const MagazinePage = ({ data }: MagazinePageProps) => {
<ul className="flex flex-wrap gap-y-4 divide-x-2 divide-energy-red-100">
{tags.map((tag: string) => {
return (
<span
<li
key={`magazine_tag_key_${tag}`}
className="inline-block text-sm font-medium pl-3 pr-3 first:pl-0 lg:text-xs whitespace-nowrap"
>
{tag}
</span>
</li>
)
})}
</ul>
Expand Down

0 comments on commit c3631a5

Please sign in to comment.