Skip to content

Commit

Permalink
lint, fix semantic error in flow conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
rosskevin committed Jul 7, 2016
1 parent 1b936ae commit 29e4599
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/site/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import {AppContainer} from 'react-hot-loader';
import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/App';
import Redbox from 'redbox-react'; // workaround https://github.com/gaearon/react-hot-loader/issues/312#issuecomment-231061904
// workaround https://github.com/gaearon/react-hot-loader/issues/312#issuecomment-231061904
import Redbox from 'redbox-react';
// import a11y from 'react-a11y';

// if (process.env.NODE_ENV !== 'production') {
Expand Down
5 changes: 3 additions & 2 deletions src/styles/MuiThemeProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ export default class MuiThemeProvider extends Component<void, Props, void> {
};

getChildContext() {
const {theme, styleManager} = this;
return {
theme: this,
styleManager: this,
theme: theme,
styleManager: styleManager,
};
}

Expand Down

0 comments on commit 29e4599

Please sign in to comment.