Skip to content

Commit ae5adb4

Browse files
authoredJul 26, 2022
fix(starters): Key prop to docs list (#36236)

File tree

1 file changed

+1
-1
lines changed
  • starters/gatsby-starter-minimal-ts/src/pages

1 file changed

+1
-1
lines changed
 

‎starters/gatsby-starter-minimal-ts/src/pages/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ const IndexPage = () => {
154154
</p>
155155
<ul style={doclistStyles}>
156156
{docLinks.map(doc => (
157-
<li style={docLinkStyle}>
157+
<li key={doc.url} style={docLinkStyle}>
158158
<a
159159
style={linkStyle}
160160
href={`${doc.url}?utm_source=starter&utm_medium=ts-docs&utm_campaign=minimal-starter-ts`}

0 commit comments

Comments
 (0)
Please sign in to comment.