View button font change #152

Merged
r2shuai merged 5 commits from view-font into main 2023-02-01 21:45:47 -05:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit cc67c9bd5c - Show all commits

View File

@ -32,7 +32,9 @@ export function ContributorGroup({ group }: ContributorGroupProps) {
{d.name}
</a>
) : (
<a href="#">{d.name}</a>
<a href="#" onClick={(e) => e.preventDefault()}>
{d.name}
</a>
)}
</li>
);