diff --git a/src/element/live-chat.tsx b/src/element/live-chat.tsx index 34a18fb..90bdae5 100644 --- a/src/element/live-chat.tsx +++ b/src/element/live-chat.tsx @@ -17,6 +17,7 @@ import { useLiveChatFeed } from "../hooks/live-chat"; import { Profile } from "./profile"; import { Icon } from "./icon"; import Spinner from "./spinner"; +import { Text } from "./text"; import { useLogin } from "../hooks/login"; import { formatSats } from "../number"; import useTopZappers from "../hooks/top-zappers"; @@ -201,7 +202,11 @@ function ChatZap({ zap }: { zap: ParsedZap }) { {formatSats(zap.amount)} sats - {zap.content &&
{zap.content}
} + {zap.content && ( +
+ +
+ )} ); }