diff --git a/web/pages/embed/chat/readwrite/index.tsx b/web/pages/embed/chat/readwrite/index.tsx index 3c43d5dce..dc090c24e 100644 --- a/web/pages/embed/chat/readwrite/index.tsx +++ b/web/pages/embed/chat/readwrite/index.tsx @@ -1,4 +1,6 @@ +/* eslint-disable react/no-unknown-property */ import { useRecoilValue } from 'recoil'; +import { useEffect } from 'react'; import { ChatMessage } from '../../../../interfaces/chat-message.model'; import { ChatContainer } from '../../../../components/chat/ChatContainer/ChatContainer'; import { @@ -30,8 +32,20 @@ export default function ReadWriteChatEmbed() { const headerText = online ? streamTitle || name : name; + // This is a hack to force a specific body background color for just this page. + useEffect(() => { + document.body.classList.add('body-background'); + }, []); + return (