diff --git a/src/components/HTMLEngineProvider/HTMLRenderers/ImageRenderer.js b/src/components/HTMLEngineProvider/HTMLRenderers/ImageRenderer.js
index d92ca69542bf..411379e891d4 100644
--- a/src/components/HTMLEngineProvider/HTMLRenderers/ImageRenderer.js
+++ b/src/components/HTMLEngineProvider/HTMLRenderers/ImageRenderer.js
@@ -60,7 +60,7 @@ const ImageRenderer = (props) => {
>
{({show}) => (
showContextMenuForReport(event, anchor, report.reportID, action, checkIfContextMenuActive, ReportUtils.isArchivedRoom(report))}
>
diff --git a/src/components/PressableWithoutFocus.js b/src/components/PressableWithoutFocus.js
index 5b441f4ee9f4..a04a281351fe 100644
--- a/src/components/PressableWithoutFocus.js
+++ b/src/components/PressableWithoutFocus.js
@@ -14,11 +14,11 @@ const propTypes = {
/** Styles that should be passed to touchable container */
// eslint-disable-next-line react/forbid-prop-types
- styles: PropTypes.arrayOf(PropTypes.object),
+ style: PropTypes.arrayOf(PropTypes.object),
};
const defaultProps = {
- styles: [],
+ style: [],
onLongPress: undefined,
};
@@ -46,7 +46,7 @@ class PressableWithoutFocus extends React.Component {
onPress={this.pressAndBlur}
onLongPress={this.props.onLongPress}
ref={(el) => (this.pressableRef = el)}
- style={this.props.styles}
+ style={this.props.style}
>
{this.props.children}
diff --git a/src/pages/DetailsPage.js b/src/pages/DetailsPage.js
index 909b52da89b3..99c135eab98f 100755
--- a/src/pages/DetailsPage.js
+++ b/src/pages/DetailsPage.js
@@ -137,7 +137,7 @@ class DetailsPage extends React.PureComponent {
>
{({show}) => (
diff --git a/src/pages/ProfilePage.js b/src/pages/ProfilePage.js
index 932f489be5f4..d5b637fd4ccd 100755
--- a/src/pages/ProfilePage.js
+++ b/src/pages/ProfilePage.js
@@ -148,7 +148,7 @@ function ProfilePage(props) {
>
{({show}) => (