fix: remove unnecessary parentheses around link in ReleaseNoteListItem

This commit is contained in:
mr. m
2026-04-08 13:19:45 +02:00
parent 9c0d45ab73
commit 33588a4580

View File

@@ -41,11 +41,11 @@ const {
{
link && (
<>
"("
(
<a href={link.href} class="text-blue inline-block text-base underline">
{link.text}
</a>
")"
)
</>
)
}