summaryrefslogtreecommitdiffstats
path: root/web/react/stores/error_store.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-08 10:33:59 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-08 10:33:59 -0500
commit2af861423619271651e01f1bb879c6e5f189f241 (patch)
treeac8f500b7590bca75c43797f78a912c03b705ca8 /web/react/stores/error_store.jsx
parent96cb7345dafbf07027acb9dc05fc7d0808a4ac38 (diff)
downloadchat-2af861423619271651e01f1bb879c6e5f189f241.tar.gz
chat-2af861423619271651e01f1bb879c6e5f189f241.tar.bz2
chat-2af861423619271651e01f1bb879c6e5f189f241.zip
Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/stores/error_store.jsx')
-rw-r--r--web/react/stores/error_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/stores/error_store.jsx b/web/react/stores/error_store.jsx
index ed46d6b68..5afcefd12 100644
--- a/web/react/stores/error_store.jsx
+++ b/web/react/stores/error_store.jsx
@@ -57,7 +57,7 @@ var ErrorStore = new ErrorStoreClass();
ErrorStore.dispatchToken = AppDispatcher.register((payload) => {
var action = payload.action;
switch (action.type) {
- case ActionTypes.RECIEVED_ERROR:
+ case ActionTypes.RECEIVED_ERROR:
ErrorStore.storeLastError(action.err);
ErrorStore.emitChange();
break;