From 50c39b459b1f6608f18808c2c47410326ab9aee1 Mon Sep 17 00:00:00 2001 From: mkljczk Date: Wed, 26 Mar 2025 16:49:16 +0100 Subject: [PATCH] pl-fe: fix cats being unyable to use custom emojis Signed-off-by: mkljczk --- packages/pl-fe/src/components/parsed-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/components/parsed-content.tsx b/packages/pl-fe/src/components/parsed-content.tsx index 31ce94576..645f49dbd 100644 --- a/packages/pl-fe/src/components/parsed-content.tsx +++ b/packages/pl-fe/src/components/parsed-content.tsx @@ -110,7 +110,7 @@ function parseContent({ return {data}; } - if (speakAsCat) return <>{data}; + if (speakAsCat) return ; return; }