Skip to content

Commit

Permalink
Merge pull request #1329 from nos/chore/check
Browse files Browse the repository at this point in the history
chore(app): deps
  • Loading branch information
Maurice Dalderup authored Jul 10, 2020
2 parents bebb35b + 4d31cff commit 7bb2db7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ commands:
description: 'Setting up and building environment for mac'
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-mac-{{ checksum "package.json" }}
- v1-dependencies-mac
# - restore_cache:
# keys:
# - v1-dependencies-mac-{{ checksum "package.json" }}
# - v1-dependencies-mac
- run: yarn

jobs:
Expand Down
8 changes: 4 additions & 4 deletions src/renderer/root/shapes/dialogShape.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
import { string, func, oneOf, oneOfType, any, shape } from 'prop-types';
import { string, func, oneOf, oneOfType, node, shape } from 'prop-types';

import { TYPE_ALERT, TYPE_CONFIRM, TYPE_AUTH, TYPE_NEW_WALLET } from '../values/dialogs';

const alertShape = shape({
title: string,
image: string,
children: any.isRequired,
children: node.isRequired,
confirmLabel: string,
onConfirm: func
});

const confirmShape = shape({
title: string,
image: string,
children: any.isRequired,
children: node.isRequired,
confirmLabel: string,
cancelLabel: string,
onConfirm: func,
onCancel: func
});

const authShape = shape({
children: any,
children: node,
onConfirm: func,
onCancel: func
});
Expand Down

0 comments on commit 7bb2db7

Please sign in to comment.