diff --git a/app/components/SimpleEditor/SimpleEditorWrapper.jsx b/app/components/SimpleEditor/SimpleEditorWrapper.jsx
index cba0a6169c6b7c29dc6c00639491e344e3d3e12d..960457e4a8fd2e7f7c48d34aa7d9a7ddefcc45be 100644
--- a/app/components/SimpleEditor/SimpleEditorWrapper.jsx
+++ b/app/components/SimpleEditor/SimpleEditorWrapper.jsx
@@ -17,10 +17,12 @@ export class SimpleEditorWrapper extends React.Component {
   }
 
   componentWillMount () {
-    const { getCollections, getFragments } = this.props.actions
+    const { book, actions } = this.props
+    const { getCollections, getFragments } = actions
 
-    getCollections().then(result => {
-      getFragments(result.collections[0])
+    // TODO: might not need to fetch all the collections?
+    getCollections().then(() => {
+      getFragments(book)
     })
 
     const { user } = this.props