aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/eventLog.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/ducks/eventLog.js')
-rw-r--r--web/src/js/ducks/eventLog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/ducks/eventLog.js b/web/src/js/ducks/eventLog.js
index aa472592..81f19e2e 100644
--- a/web/src/js/ducks/eventLog.js
+++ b/web/src/js/ducks/eventLog.js
@@ -120,7 +120,7 @@ export function fetchData() {
return fetchApi('/events')
.then(res => res.json())
- .then(json => dispatch(receive(json.data)))
+ .then(json => dispatch(receive(json.data)))
.catch(error => dispatch(fetchError(error)))
}
}