Note creator improvement #6

Merged
verbiricha merged 2 commits from note-creator into main 2023-01-06 13:05:11 +00:00
Showing only changes of commit 6e47089cc8 - Show all commits

View File

@ -29,7 +29,7 @@ export function extractLinks(fragments) {
}
}
} else {
return <a href={url}>{url.toString()}</a>
return <a key={url} href={url}>{url.toString()}</a>
}
} catch (e) {
console.warn(`Not a valid url: ${a}`);