Skip to content

Commit 7bb2db7

Browse files
author
Maurice Dalderup
authored
Merge pull request #1329 from nos/chore/check
chore(app): deps
2 parents bebb35b + 4d31cff commit 7bb2db7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ commands:
5353
description: 'Setting up and building environment for mac'
5454
steps:
5555
- checkout
56-
- restore_cache:
57-
keys:
58-
- v1-dependencies-mac-{{ checksum "package.json" }}
59-
- v1-dependencies-mac
56+
# - restore_cache:
57+
# keys:
58+
# - v1-dependencies-mac-{{ checksum "package.json" }}
59+
# - v1-dependencies-mac
6060
- run: yarn
6161

6262
jobs:

src/renderer/root/shapes/dialogShape.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
import { string, func, oneOf, oneOfType, any, shape } from 'prop-types';
1+
import { string, func, oneOf, oneOfType, node, shape } from 'prop-types';
22

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

55
const alertShape = shape({
66
title: string,
77
image: string,
8-
children: any.isRequired,
8+
children: node.isRequired,
99
confirmLabel: string,
1010
onConfirm: func
1111
});
1212

1313
const confirmShape = shape({
1414
title: string,
1515
image: string,
16-
children: any.isRequired,
16+
children: node.isRequired,
1717
confirmLabel: string,
1818
cancelLabel: string,
1919
onConfirm: func,
2020
onCancel: func
2121
});
2222

2323
const authShape = shape({
24-
children: any,
24+
children: node,
2525
onConfirm: func,
2626
onCancel: func
2727
});

0 commit comments

Comments
 (0)