Merge pull request #101 from cwillisf/fix-telemetry-modal

Fix telemetry modal
This commit is contained in:
Chris Willis-Ford 2020-02-05 09:08:45 -08:00 committed by GitHub
commit 998132876e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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(<WrappedGui />, appTarget);