diff --git a/src/common/MetaRow/MetaRow.js b/src/common/MetaRow/MetaRow.js
index 9aeb530d7..512a39983 100644
--- a/src/common/MetaRow/MetaRow.js
+++ b/src/common/MetaRow/MetaRow.js
@@ -10,9 +10,9 @@ const CONSTANTS = require('stremio/common/CONSTANTS');
const MetaRowPlaceholder = require('./MetaRowPlaceholder');
const styles = require('./styles');
-const MetaRow = ({ className, title, message, items, itemComponent, deepLinks }) => {
+const MetaRow = ({ className, title, message, items, itemComponent, deepLinks, ...props }) => {
return (
-
+
{
(typeof title === 'string' && title.length > 0) || (deepLinks && (typeof deepLinks.discover === 'string' || typeof deepLinks.library === 'string')) ?
diff --git a/src/common/MetaRow/MetaRowPlaceholder/MetaRowPlaceholder.js b/src/common/MetaRow/MetaRowPlaceholder/MetaRowPlaceholder.js
index 5ad9ccea5..53012d3ca 100644
--- a/src/common/MetaRow/MetaRowPlaceholder/MetaRowPlaceholder.js
+++ b/src/common/MetaRow/MetaRowPlaceholder/MetaRowPlaceholder.js
@@ -8,9 +8,9 @@ const Button = require('stremio/common/Button');
const CONSTANTS = require('stremio/common/CONSTANTS');
const styles = require('./styles');
-const MetaRowPlaceholder = ({ className, title, deepLinks }) => {
+const MetaRowPlaceholder = ({ className, title, deepLinks, ...props }) => {
return (
-
+
0 ? title : null}>
{typeof title === 'string' && title.length > 0 ? title : null}