diff --git a/src/common/components/meta/index.tsx b/src/common/components/meta/index.tsx index 1cd55592b9d..a3cdaee9390 100644 --- a/src/common/components/meta/index.tsx +++ b/src/common/components/meta/index.tsx @@ -38,13 +38,6 @@ class Meta extends Component { rss, global, } = this.props; - let { image } = this.props; - - if (!image) { - image = `${defaults.imageServer}/u/${ - global?.hive_id ? global.hive_id : "hive-112019" - }/avatar/medium`; - } return ( <> @@ -138,11 +131,14 @@ class Meta extends Component { )} - {image && ( - - - - )} + + + ); }