From 4b3c86595949b49ba278938ad18e038e2178d3ec Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Mon, 22 Oct 2018 23:07:41 -0500 Subject: [PATCH] lint: make colorScheme camel case Signed-off-by: Aaron Raimist --- src/components/structures/MatrixChat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js index f385aacd40..dce1ac698d 100644 --- a/src/components/structures/MatrixChat.js +++ b/src/components/structures/MatrixChat.js @@ -1406,8 +1406,8 @@ export default React.createClass({ // Fire the tinter right on startup to ensure the default theme is applied // A later sync can/will correct the tint to be the right value for the user - const color_scheme = SettingsStore.getValue("roomColor"); - Tinter.tint(color_scheme.primary_color, color_scheme.secondary_color); + const colorScheme = SettingsStore.getValue("roomColor"); + Tinter.tint(colorScheme.primary_color, colorScheme.secondary_color); }, /**