Skip to content

Commit

Permalink
WIP fix key warning
Browse files Browse the repository at this point in the history
  • Loading branch information
yaanahuu committed Aug 16, 2023
1 parent 13155e1 commit 37fefee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const wrapTree = ({
members,
}: ICategoryTreeViewModel<CategorizableType>): JSX.Element => {
return (
<CategoryTreeNode id={id} label={label} members={members} wrapTree={wrapTree}>
<CategoryTreeNode key={id} id={id} label={label} members={members} wrapTree={wrapTree}>
{children}
</CategoryTreeNode>
);
Expand Down

0 comments on commit 37fefee

Please sign in to comment.