Skip to content

Commit bc229a8

Browse files
committed
removes extra set of parenthases in loading_items page
1 parent c629d22 commit bc229a8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sites/en/javascript-to-do-list-with-react/loading_items.step

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,8 @@ succeeds. Add the following lines of code to the bottom of the LoadItems functio
6868

6969
source_code :javascript, <<-JAVASCRIPT
7070
loadRequest.done(function(dataFromServer) {
71-
items = dataFromServer.items
72-
notifyComponents()
73-
})
71+
items = dataFromServer.items
72+
notifyComponents()
7473
})
7574
JAVASCRIPT
7675

0 commit comments

Comments
 (0)