Skip to content

Commit 4f7e6a5

Browse files
authored
v3.0.0-alpha.5 (#604)
* fix(context): fix misspelled `defaultProp` on `ReactReduxFirebaseProvider` - #564 * feat(docs): add code sandbox example link to README
1 parent 5224326 commit 4f7e6a5

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313

1414
> Redux bindings for Firebase. Includes Higher Order Component (HOC) for use with React.
1515
16-
## [Demo](https://demo.react-redux-firebase.com)
16+
## [Simple Example](https://codesandbox.io/s/zrr0n5m2zp)
17+
18+
[![Edit Simple Example](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/zrr0n5m2zp)
1719

1820
The [Material Example](https://github.com/prescottprue/react-redux-firebase/tree/master/examples/complete/material) is deployed to [demo.react-redux-firebase.com](https://demo.react-redux-firebase.com).
1921

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-redux-firebase",
3-
"version": "3.0.0-alpha.4",
3+
"version": "3.0.0-alpha.5",
44
"description": "Redux integration for Firebase. Comes with a Higher Order Components for use with React.",
55
"main": "lib/index.js",
66
"module": "es/index.js",

src/ReactReduxFirebaseProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function ReactReduxFirebaseProvider(props = {}) {
3939
}
4040

4141
ReactReduxFirebaseProvider.defaultProps = {
42-
initalizeAuth: true
42+
initializeAuth: true
4343
}
4444

4545
ReactReduxFirebaseProvider.propTypes = {

0 commit comments

Comments
 (0)