aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/App.js
diff options
context:
space:
mode:
authorEmiliano Ciavatta2020-10-16 13:26:55 +0000
committerEmiliano Ciavatta2020-10-16 13:26:55 +0000
commitd429a344ef34bb9289616dc7ca11c161fabce5d7 (patch)
tree664d56822eac93568f44c40ca25be725d1dd81c8 /frontend/src/components/App.js
parent5534413b3a3e6e783310be8147ac8340d3098a7e (diff)
Refactor js arrow functions
Diffstat (limited to 'frontend/src/components/App.js')
-rw-r--r--frontend/src/components/App.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/App.js b/frontend/src/components/App.js
index 888ff86..e12a99d 100644
--- a/frontend/src/components/App.js
+++ b/frontend/src/components/App.js
@@ -27,7 +27,7 @@ class App extends Component {
state = {};
componentDidMount() {
- dispatcher.register("notifications", payload => {
+ dispatcher.register("notifications", (payload) => {
if (payload.event === "connected") {
this.setState({
connected: true,