Merge pull request #3533 from ethcore/jg-fix-dapps-edit

[beta] apps typo fix

Former-commit-id: da1cf99476f290b9a995cf2989d0f8f49617e20e
This commit is contained in:
Gav Wood 2016-11-19 10:45:06 +08:00 committed by GitHub
commit 0e8f459b61
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ export default class AddDapps extends Component {
renderApp = (app) => {
const { store } = this.props;
const isHidden = store.hidden.includes(app.id);
const isHidden = store.hiddenApps.includes(app.id);
const onCheck = () => {
if (isHidden) {
store.showApp(app.id);