diff --git a/client/coral-embed-stream/src/components/CommentTombstone.js b/client/coral-embed-stream/src/components/CommentTombstone.js index 1d7e8d7e5..9af684265 100644 --- a/client/coral-embed-stream/src/components/CommentTombstone.js +++ b/client/coral-embed-stream/src/components/CommentTombstone.js @@ -1,5 +1,5 @@ import React from 'react'; - +import PropTypes from 'prop-types'; import t from 'coral-framework/services/i18n'; // Render in place of a Comment when the author of the comment is @@ -34,4 +34,8 @@ class CommentTombstone extends React.Component { } } +CommentTombstone.propTypes = { + action: PropTypes.string, +}; + export default CommentTombstone;