fix(subplebbit description): prevent escaping characters in translation

This commit is contained in:
plebeius.eth
2024-05-04 17:01:20 +02:00
parent 6aa5f38063
commit aac20c4671
@@ -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,
};