Feed feedback and fixes #231

Merged
enes merged 22 commits from feat/131-feed-issues into staging 2025-02-21 14:06:33 +00:00
Showing only changes of commit f73a4277b3 - Show all commits

View File

@ -29,7 +29,7 @@ export const NoteRender = ({ content }: NoteRenderProps) => {
if (link.test(part)) { if (link.test(part)) {
const [href] = part.match(link) || [] const [href] = part.match(link) || []
return ( return (
<a key={index} href={href}> <a key={index} target='_blank' href={href}>
{href} {href}
</a> </a>
) )