Skip to content

Commit 910c750

Browse files
styfleovflowd
andauthored
fix: Change link to point to npm release notes (#6484)
* fix: link to npm release notes Signed-off-by: Steven <[email protected]> * fixed prettier --------- Signed-off-by: Steven <[email protected]> Co-authored-by: Claudio Wunder <[email protected]>
1 parent 591fc5c commit 910c750

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/Downloads/Release/NpmLink.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ const NpmLink: FC = () => {
1010
const { release } = useContext(ReleaseContext);
1111

1212
return (
13-
<LinkWithArrow href={`https://www.npmjs.com/package/npm/v/${release.npm}`}>
13+
<LinkWithArrow
14+
href={`https://github.com/npm/cli/releases/tag/v${release.npm}`}
15+
>
1416
npm ({release.npm})
1517
</LinkWithArrow>
1618
);

0 commit comments

Comments
 (0)