Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo
  • Loading branch information
stevenyap authored May 24, 2017
commit db108174c6bee1c4df48383ca76e65eabc1b5235
2 changes: 1 addition & 1 deletion docs/api/connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const fbWrapped = firebaseConnect([
// pass todos list from redux as this.props.todosList
export default connect(({ firebase }) => ({
todosList: dataToJS(firebase, 'todos'),
profile: pathToJS(firebase, 'profile'), // pass profile data as this.props.proifle
profile: pathToJS(firebase, 'profile'), // pass profile data as this.props.profile
auth: pathToJS(firebase, 'auth') // pass auth data as this.props.auth
}))(fbWrapped)
```
Expand Down