summaryrefslogtreecommitdiff
path: root/client/index.jsx
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-07-21 04:48:52 +0200
committerJules Laplace <julescarbon@gmail.com>2017-07-21 04:48:52 +0200
commitd41070c7b00fafc974a1a6e7b6d1b42391fa57ed (patch)
tree4178eba89627e8581cdc5eea65bf7f11591f6b45 /client/index.jsx
parentd02cbad01f3abfa8a1aad0b55b8bd9cf544090cf (diff)
all async paths working
Diffstat (limited to 'client/index.jsx')
-rw-r--r--client/index.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/index.jsx b/client/index.jsx
index 1a8577e..4b95736 100644
--- a/client/index.jsx
+++ b/client/index.jsx
@@ -14,7 +14,7 @@ client.folder.index().then( folders => {
store.dispatch( loadOpenFolders(openFolders) )
openFolders.forEach( folder_id => {
client.file.index({ folder_id }).then( files => {
- store.dispatch(loadFiles(files))
+ store.dispatch( loadFiles(files) )
})
})
}