From d901d34b6951d4b161ab0afd3bb4421ba902d5e2 Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Fri, 23 Aug 2019 07:39:22 -0500 Subject: [PATCH] fix/make=editor-night-mode-by-default (#36667) --- client/src/templates/Challenges/classic/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/templates/Challenges/classic/Editor.js b/client/src/templates/Challenges/classic/Editor.js index eafdc5b66d..f2c41637f0 100644 --- a/client/src/templates/Challenges/classic/Editor.js +++ b/client/src/templates/Challenges/classic/Editor.js @@ -20,7 +20,7 @@ const propTypes = { const mapStateToProps = createSelector( userSelector, - ({ theme = 'default' }) => ({ theme }) + ({ theme = 'night' }) => ({ theme }) ); const mapDispatchToProps = dispatch =>