add missing maxBytes to MessageInput

This commit is contained in:
Hunter275
2025-02-07 23:28:55 -05:00
parent 921f9b21a2
commit e3cc95cfd8

View File

@@ -56,7 +56,7 @@ export const ChannelChat = ({
<EmptyState />
</div>
<div className="flex-shrink-0 p-4 w-full bg-gray-900">
<MessageInput to={to} channel={channel} />
<MessageInput to={to} channel={channel} maxBytes={200} />
</div>
</div>
);