fix(description): escape character wasn't excluded from translation

This commit is contained in:
Tom (plebeius.eth)
2024-05-31 19:59:56 +02:00
parent 2ecedcc956
commit 7648ef1432
+1 -1
View File
@@ -43,7 +43,7 @@ const useFeedRows = (columnCount: number, feed: any, isFeedLoaded: boolean, subp
author: { displayName: `## ${t('board_mods')}` },
content: isInAllView ? multisub?.description : description,
link: avatarUrl,
title: t('welcome_to_board', { board: isInAllView ? multisub?.title : title || `p/${shortAddress}` }),
title: t('welcome_to_board', { board: isInAllView ? multisub?.title : title || `p/${shortAddress}`, interpolation: { escapeValue: false } }),
pinned: true,
locked: true,
});