From 0c3d25dd19473911d46d4f5cb8f5b4f1e224e270 Mon Sep 17 00:00:00 2001 From: Rafael Specht da Silva Date: Thu, 21 Jul 2016 19:57:52 -0300 Subject: [PATCH] fixing syntax error 'missing parenthesis' on ui.js when running 'npm run dev' (#353) --- app/lib/reducers/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/reducers/ui.js b/app/lib/reducers/ui.js index c93900e9..5a68e46e 100644 --- a/app/lib/reducers/ui.js +++ b/app/lib/reducers/ui.js @@ -127,7 +127,7 @@ const reducer = (state = initial, action) => { ret.colors = config.colors; } } else { - if (JSON.stringify(state.colors) !== JSON.stringify(config.colors) { + if (JSON.stringify(state.colors) !== JSON.stringify(config.colors)) { ret.colors = config.colors; } }