Skip to content

Commit

Permalink
style: Nit on ContentTagsDrawer code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChV committed Sep 26, 2024
1 parent be07463 commit ff7bd2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content-tags-drawer/ContentTagsDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const TaxonomyList = ({ contentId }: TaxonomyListProps) => {
return (
<div>
{ tagsByTaxonomy.map((data) => (
<div key={`taxonomy-tags-collapsible-${data.id}`}>
<div key={data.id}>
<ContentTagsCollapsible
contentId={contentId}
taxonomyAndTagsData={data}
Expand Down Expand Up @@ -356,7 +356,7 @@ const ContentTagsDrawer = ({
</p>
{ isTaxonomyListLoaded && isContentTaxonomyTagsLoaded && (
otherTaxonomies.map((data) => (
<div key={`taxonomy-tags-collapsible-${data.id}`}>
<div key={data.id}>
<ContentTagsCollapsible
contentId={contentId}
taxonomyAndTagsData={data}
Expand Down

0 comments on commit ff7bd2a

Please sign in to comment.