1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-30 20:28:09 +00:00

fix NotificationGroup.propTypes

This commit is contained in:
Szymon Lesisz 2018-10-11 15:17:38 +02:00 committed by Szymon Lesisz
parent 60b0e35b2c
commit f5bf14b776

View File

@ -118,8 +118,14 @@ Group.propTypes = {
PropTypes.shape({ PropTypes.shape({
key: PropTypes.object, key: PropTypes.object,
type: PropTypes.string, type: PropTypes.string,
title: PropTypes.string, title: PropTypes.oneOfType([
message: PropTypes.string, PropTypes.string,
PropTypes.node,
]),
message: PropTypes.oneOfType([
PropTypes.string,
PropTypes.node,
]),
}), }),
), ),
}; };