Skip to content

Commit

Permalink
chore(packages): fix links to package gatsby-cypress (#21479)
Browse files Browse the repository at this point in the history
Co-authored-by: Ward Peeters <ward@coding-tech.com>
  • Loading branch information
muescha and wardpeet committed Feb 29, 2020
1 parent 2d73e51 commit d357bb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion www/src/views/starter/details.js
Expand Up @@ -57,7 +57,9 @@ const Details = ({
>
{shownDeps &&
shownDeps.map(dep =>
/^gatsby-/.test(dep) ? (
// gatsby-cypress is a helper plugin and not shown inside our plugins section
// for that reason we are excluding it from our list of plugins
/^gatsby-/.test(dep) && dep !== `gatsby-cypress` ? (
<div key={dep}>
<Link to={`/packages/${dep}`}>{dep}</Link>
</div>
Expand Down

0 comments on commit d357bb1

Please sign in to comment.