From b2cab8d126e829cc79aa850286219f07f958ef5d Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 29 Jul 2022 23:38:10 -0400 Subject: [PATCH] Fix suggested post title html. Fixes #691 (#717) --- src/shared/components/post/post-form.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/shared/components/post/post-form.tsx b/src/shared/components/post/post-form.tsx index 4adab8f..dde1cb4 100644 --- a/src/shared/components/post/post-form.tsx +++ b/src/shared/components/post/post-form.tsx @@ -197,9 +197,7 @@ export class PostForm extends Component { role="button" onClick={linkEvent(this, this.copySuggestedTitle)} > - {i18n.t("copy_suggested_title", { - title, - })} + {i18n.t("copy_suggested_title", { title: "" })} {title} ), none: <>, -- 2.44.1