Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: avoid nested buttons in changelog links
  • Loading branch information
hearsilent committed Mar 18, 2026
commit 7326d84aef336978ca3e31bd67f3c0dffd3d4083
2 changes: 1 addition & 1 deletion src/components/changelog-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function SimpleMarkdown({ content }: { content: string }) {
onClick={() => openUrl(part.url!).catch(console.error)}
className={linkClass}
>
{renderText(part.content)}
{part.content}
</button>
);
}
Expand Down