File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const BlocksOnly = props => (
2727 </ GUI >
2828) ;
2929
30- const App = HashParserHOC ( AppStateHOC ( BlocksOnly ) ) ;
30+ const App = AppStateHOC ( HashParserHOC ( BlocksOnly ) ) ;
3131
3232const appTarget = document . createElement ( 'div' ) ;
3333document . body . appendChild ( appTarget ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import ReactDOM from 'react-dom';
44import GUI from '../containers/gui.jsx' ;
55import HashParserHOC from '../lib/hash-parser-hoc.jsx' ;
66import AppStateHOC from '../lib/app-state-hoc.jsx' ;
7- const WrappedGui = HashParserHOC ( AppStateHOC ( GUI ) ) ;
7+ const WrappedGui = AppStateHOC ( HashParserHOC ( GUI ) ) ;
88
99
1010const DEFAULT_PROJECT_ID = '10015059' ;
Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ const ConnectedPlayer = connect(
5858// the hierarchy of HOC constructor calls clearer here; it has nothing to do with redux's
5959// ability to compose reducers.
6060const WrappedPlayer = compose (
61- HashParserHOC ,
6261 AppStateHOC ,
62+ HashParserHOC ,
6363 TitledHOC
6464) ( ConnectedPlayer ) ;
6565
You can’t perform that action at this time.
0 commit comments