diff --git a/src/pages/home/report/ReportActionItemFragment.js b/src/pages/home/report/ReportActionItemFragment.js index 62ccf9609f43..3d8fdb9c6e35 100644 --- a/src/pages/home/report/ReportActionItemFragment.js +++ b/src/pages/home/report/ReportActionItemFragment.js @@ -51,6 +51,12 @@ const propTypes = { /** Should this fragment be contained in a single line? */ isSingleLine: PropTypes.bool, + // Additional styles to add after local styles + style: PropTypes.oneOfType([ + PropTypes.arrayOf(PropTypes.object), + PropTypes.object, + ]), + ...windowDimensionsPropTypes, /** localization props */ diff --git a/src/pages/home/report/reportActionFragmentPropTypes.js b/src/pages/home/report/reportActionFragmentPropTypes.js index e009e1b1da08..51788260a798 100644 --- a/src/pages/home/report/reportActionFragmentPropTypes.js +++ b/src/pages/home/report/reportActionFragmentPropTypes.js @@ -25,10 +25,4 @@ export default PropTypes.shape({ // An additional avatar url - not the main avatar url but used within a message. iconUrl: PropTypes.string, - - // Additional styles to add after local styles - style: PropTypes.oneOfType([ - PropTypes.arrayOf(PropTypes.object), - PropTypes.object, - ]), });