Remove extra parameter because I'm dumb

This commit is contained in:
Drew DeVault 2017-12-30 10:38:45 -05:00
parent e303f37572
commit c3f8631a57

View File

@ -54,7 +54,7 @@ if (module.hot) {
module.hot.accept('./ui/main.js', () => {
const NextMain = require('./ui/main.js').default;
skip_init = true;
render(<NextMain />, document.getElementById('react-root'));
render(<NextMain />);
});
}