Skip to content

Commit

Permalink
fix(starters): Key prop to docs list (#36236)
Browse files Browse the repository at this point in the history
  • Loading branch information
aghreed committed Jul 26, 2022
1 parent 922874d commit ae5adb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starters/gatsby-starter-minimal-ts/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const IndexPage = () => {
</p>
<ul style={doclistStyles}>
{docLinks.map(doc => (
<li style={docLinkStyle}>
<li key={doc.url} style={docLinkStyle}>
<a
style={linkStyle}
href={`${doc.url}?utm_source=starter&utm_medium=ts-docs&utm_campaign=minimal-starter-ts`}
Expand Down

0 comments on commit ae5adb4

Please sign in to comment.