Skip to content

Commit 3ca3fc7

Browse files
committed
Fix compile errors
1 parent 9ae56ed commit 3ca3fc7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/master-detail/ContactStore.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
const API = 'http://addressbook-api.herokuapp.com/contacts'
2-
const _contacts = {}
3-
const _changeListeners = []
4-
const _initCalled = false
2+
3+
let _contacts = {}
4+
let _initCalled = false
5+
let _changeListeners = []
56

67
const ContactStore = {
78

0 commit comments

Comments
 (0)