Skip to content

Commit 0e90ba0

Browse files
committed
Update add-ms-graph.md
Modified code in tutorial to match updated code in completed project.
1 parent 595ccb7 commit 0e90ba0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorial/add-ms-graph.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ render() {
109109
</thead>
110110
<tbody>
111111
{this.state.events.map(
112-
function(event, index){
112+
function(event){
113113
return(
114-
<tr>
114+
<tr key={event.id}>
115115
<td>{event.organizer.emailAddress.name}</td>
116116
<td>{event.subject}</td>
117117
<td>{formatDateTime(event.start.dateTime)}</td>

0 commit comments

Comments
 (0)