From af029b69376b2fe296af440362c6ada68e043c99 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford Date: Mon, 27 Jan 2020 16:01:08 -0800 Subject: [PATCH] fix telemetry modal --- src/renderer/app.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/app.jsx b/src/renderer/app.jsx index 4401074..55baf17 100644 --- a/src/renderer/app.jsx +++ b/src/renderer/app.jsx @@ -96,8 +96,8 @@ const ScratchDesktopHOC = function (WrappedComponent) { // the hierarchy of HOC constructor calls clearer here; it has nothing to do with redux's // ability to compose reducers. const WrappedGui = compose( - AppStateHOC, - ScratchDesktopHOC + ScratchDesktopHOC, + AppStateHOC )(GUI); ReactDOM.render(, appTarget);