From aac20c4671bbd07cd6756217ff270510bbf2464c Mon Sep 17 00:00:00 2001 From: "plebeius.eth" Date: Sat, 4 May 2024 17:01:20 +0200 Subject: [PATCH] fix(subplebbit description): prevent escaping characters in translation --- .../subplebbit-description/subplebbit-description.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/subplebbit-description/subplebbit-description.tsx b/src/components/subplebbit-description/subplebbit-description.tsx index f4977912..843d8b54 100644 --- a/src/components/subplebbit-description/subplebbit-description.tsx +++ b/src/components/subplebbit-description/subplebbit-description.tsx @@ -19,7 +19,7 @@ const SubplebbitDescription = ({ avatarUrl, createdAt, description, shortAddress author: { displayName: '## Board Mods' }, content: description, link: avatarUrl, - title: t('welcome_to_board', { board: title || `p/${shortAddress}` }), + title: t('welcome_to_board', { board: title || `p/${shortAddress}`, interpolation: { escapeValue: false } }), pinned: true, locked: true, };