From ca138883ab5416706ee3eea866640add338c11f9 Mon Sep 17 00:00:00 2001 From: Park Daesun Date: Fri, 17 Jun 2016 02:19:47 +0900 Subject: [PATCH] Remove the unnecessary comma (#3351) It is not error, but It is unnecessary --- webapp/actions/global_actions.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/actions/global_actions.jsx b/webapp/actions/global_actions.jsx index 0c07173ac2..c4551a683b 100644 --- a/webapp/actions/global_actions.jsx +++ b/webapp/actions/global_actions.jsx @@ -480,6 +480,6 @@ export function emitJoinChannelEvent(channel, success, failure) { Client.joinChannel( channel.id, success, - failure, + failure ); }