diff --git a/src/app/post/components/post-details/post-details.component.ts b/src/app/post/components/post-details/post-details.component.ts
index be250f225f0bc5b0e9d80c38b017465a5d8c141a..48d0a857b39d4f05288fa5715d8eb1eb8aa46ca3 100644
--- a/src/app/post/components/post-details/post-details.component.ts
+++ b/src/app/post/components/post-details/post-details.component.ts
@@ -57,7 +57,7 @@ export class PostDetailsComponent implements OnInit {
 
     // set og tags (for linkedin post publication)
     this.meta.updateTag({ property: 'og:title', content: this.post.title });
-    this.meta.removeTag("property='og:description'");
+    this.meta.updateTag({ property: 'og:description', content: '' });
     this.meta.updateTag({ property: 'og:type', content: 'article' });
     this.meta.updateTag({ property: 'og:image', content: this.post.feature_image });
     this.meta.updateTag({ property: 'og:url', content: `${window.location.origin}${this.router.url}` });