Skip to content

Commit

Permalink
fix: stop using nips.be
Browse files Browse the repository at this point in the history
  • Loading branch information
verbiricha committed Feb 5, 2024
1 parent 75091d3 commit 82838a5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion apps/relays/app/components/relay-summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,16 @@ function Nips({ metadata }: RelaySummaryProps) {
<HStack flexWrap="wrap">
{supported_nips.map((n: number) => (
<Box key={n}>
<Link isExternal variant="brand" href={`https://nips.be/${n}`}>
<Link
isExternal
variant="brand"
href={`https://github.com/nostr-protocol/nips/blob/master/${n.toLocaleString(
"en",
{
minimumIntegerDigits: 2,
},
)}.md`}
>
{n}
</Link>
</Box>
Expand Down

0 comments on commit 82838a5

Please sign in to comment.