diff options
Diffstat (limited to 'web/src/js/app.jsx')
-rw-r--r-- | web/src/js/app.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/js/app.jsx b/web/src/js/app.jsx index 8fa52a00..1291df7a 100644 --- a/web/src/js/app.jsx +++ b/web/src/js/app.jsx @@ -10,7 +10,7 @@ import Connection from "./connection" import ProxyApp from "./components/ProxyApp" import MainView from './components/MainView' import rootReducer from './ducks/index' -import { addLogEntry } from "./ducks/eventLog" +import { add as addLog } from "./ducks/eventLog" // logger must be last const store = createStore( @@ -19,7 +19,7 @@ const store = createStore( ) window.addEventListener('error', msg => { - store.dispatch(addLogEntry(msg)) + store.dispatch(addLog(msg)) }) // @todo remove this |