Skip to content

Commit

Permalink
fix(storybook):minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Sourtzis committed Mar 17, 2022
1 parent e4b68ac commit 9fc53bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/TagList/TagList.stories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export const Default = (args) => (
<TagList className={args.direction}>
<TagList.Title>{args.title}</TagList.Title>
<TagList.Content>
{args.tags.map((tag) => [
<Tag className={tag.class} href={tag.href}>
{args.tags.map((tag, index) => [
<Tag className={tag.class} href={tag.href} key={index}>
{tag.category}
</Tag>,
])}
Expand Down

0 comments on commit 9fc53bc

Please sign in to comment.