fix: add missing key

This commit is contained in:
Antonella Sgarlatta
2021-05-24 17:23:44 -03:00
parent b2d15be184
commit c230cdee81

View File

@@ -14,7 +14,7 @@ const NoteTags = observer(({ application, appState }: Props) => {
return ( return (
<div className="flex flex-wrap"> <div className="flex flex-wrap">
{appState.notes.activeNoteTags.map((tag) => ( {appState.notes.activeNoteTags.map((tag) => (
<span className="bg-contrast rounded text-xs color-text p-1 flex items-center mt-2 mr-2"> <span key={tag.uuid} className="bg-contrast rounded text-xs color-text p-1 flex items-center mt-2 mr-2">
<Icon type="hashtag" className="small color-neutral mr-1" /> <Icon type="hashtag" className="small color-neutral mr-1" />
{tag.title} {tag.title}
</span> </span>