diff --git a/components/ShoutBox/shoutbox.tsx b/components/ShoutBox/shoutbox.tsx index b2592df..11f6df8 100644 --- a/components/ShoutBox/shoutbox.tsx +++ b/components/ShoutBox/shoutbox.tsx @@ -22,15 +22,14 @@ export const ChatWrapper = () => { return (
@@ -155,10 +154,10 @@ const Chat = ({ limit, isOpen }: ShoutBoxProps) => { message={message.message} name={message.name} timestamp={message.timestamp} - color={index % 2 === 0 ? 'bg-purple-dark' : 'bg-purple-light'} + color={index % 2 === 0 ? 'bg-blue' : 'bg-blue-light'} isAdmin={isAdmin} onBanClick={handleBanClick} - telegram={message.source === 'telegram'} + telegram={message.source === "telegram"} /> ))} {!wsConnected && ( diff --git a/components/ShoutBox/textfield.tsx b/components/ShoutBox/textfield.tsx index 3f43e31..4dfc433 100644 --- a/components/ShoutBox/textfield.tsx +++ b/components/ShoutBox/textfield.tsx @@ -18,7 +18,7 @@ const TextField = ({
{label} { diff --git a/components/footer.tsx b/components/footer.tsx index 4ae3e9d..153d186 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -16,12 +16,12 @@ interface FooterProps { const Footer = ({ navigationItems }: FooterProps) => { return ( -