diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-05 00:11:07 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-05 00:11:07 -0400 |
commit | 2f1f4a56e141acdddd00d534f70ed5fad91a217a (patch) | |
tree | 358f932321913d65925bd6d133d3ef9638801089 /src/components/mao-app.js | |
parent | c518aedffdae943a84c53763629d0785043f6a3f (diff) |
Updated components to work with new redux files.
Diffstat (limited to 'src/components/mao-app.js')
-rw-r--r-- | src/components/mao-app.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/components/mao-app.js b/src/components/mao-app.js index 7fc57f1..456f772 100644 --- a/src/components/mao-app.js +++ b/src/components/mao-app.js @@ -27,13 +27,6 @@ import { updateLayout } from '../actions/app.js'; -// We are lazy loading its reducer. -import firebase from '../reducers/firebase.js'; - -store.addReducers({ - firebase -}); - // These are the elements needed by this element. import '@polymer/app-layout/app-drawer/app-drawer.js'; import '@polymer/app-layout/app-header/app-header.js'; @@ -289,7 +282,7 @@ class MaoApp extends connect(store)(LitElement) { this._snackbarOpened = state.app.snackbarOpened; this._drawerOpened = state.app.drawerOpened; - this._isAdmin = state.firebase.isAdmin; + this._isAdmin = state.firebaseAdmin.isAdmin; } } |