diff --git a/src/components/notifications/Context/components/Action/components/NotificationsGroups/components/Group/index.js b/src/components/notifications/Context/components/Action/components/NotificationsGroups/components/Group/index.js index 1059dd58..993cd420 100644 --- a/src/components/notifications/Context/components/Action/components/NotificationsGroups/components/Group/index.js +++ b/src/components/notifications/Context/components/Action/components/NotificationsGroups/components/Group/index.js @@ -118,8 +118,14 @@ Group.propTypes = { PropTypes.shape({ key: PropTypes.object, type: PropTypes.string, - title: PropTypes.string, - message: PropTypes.string, + title: PropTypes.oneOfType([ + PropTypes.string, + PropTypes.node, + ]), + message: PropTypes.oneOfType([ + PropTypes.string, + PropTypes.node, + ]), }), ), };