Skip to content

Commit 2e71518

Browse files
Merge branch 'master' of https://github.com/reactjs/reactjs.org into sync-255497f1
2 parents 79f8f0b + 255497f commit 2e71518

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/community/podcasts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Podcasts dedicated to React and individual podcast episodes with React discussio
1616

1717
- [React 30](https://react30.com/) - A 30-minute podcast all about React (moved to [The React Podcast](https://reactpodcast.simplecast.fm/)).
1818

19-
- [React Native Radio](https://devchat.tv/react-native-radio)
19+
- [React Native Radio](https://reactnativeradio.com) - Exploring React Native Together, hosted by [Infinite Red](https://infinite.red)
2020

2121
- [React Wednesdays](https://www.telerik.com/react-wednesdays) - Weekly live streams with the best and brightest in the React world
2222

content/docs/faq-ajax.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class MyComponent extends React.Component {
7272
return (
7373
<ul>
7474
{items.map(item => (
75-
<li key={item.name}>
75+
<li key={item.id}>
7676
{item.name} {item.price}
7777
</li>
7878
))}
@@ -120,7 +120,7 @@ function MyComponent() {
120120
return (
121121
<ul>
122122
{items.map(item => (
123-
<li key={item.name}>
123+
<li key={item.id}>
124124
{item.name} {item.price}
125125
</li>
126126
))}

0 commit comments

Comments
 (0)