Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cletqui committed Jun 19, 2024
1 parent 5869bc8 commit 73fc183
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/utils/renderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,13 @@ export const Container = ({
{description && <p>{description}</p>}
{homepage && (
<p>
<a href={homepage}>{homepage}</a>
<a
target="_blank"
rel="noopener noreferrer"
href={`${new URL(homepage)}`}
>
{homepage}
</a>
</p>
)}
{topics && topics?.length > 0 && <p>{JSON.stringify(topics)}</p>}
Expand Down

0 comments on commit 73fc183

Please sign in to comment.