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