chore: Update translations

This commit is contained in:
kieran 2024-12-11 14:05:16 +00:00
parent 0a2ba19032
commit 5540034ade

View File

@ -16,7 +16,8 @@ export function ChatPopout() {
const chat = Boolean(new URL(window.location.href).searchParams.get("chat"));
return (
<div className="h-[calc(100vh-1rem)] w-screen px-2 my-2">
{ev && <LiveChat
{ev && (
<LiveChat
ev={ev}
link={NostrLink.fromEvent(ev)}
canWrite={chat}
@ -24,7 +25,8 @@ export function ChatPopout() {
goal={goal}
className="h-inherit"
autoRaid={false}
/>}
/>
)}
</div>
);
}