fix ui: fix max ws msg len

This commit is contained in:
nick-delirium 2024-06-27 09:17:17 +02:00
parent 577734672d
commit a8d5857e0f
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

@ -63,7 +63,7 @@ function Row({ msg }) {
>
{msg.data}
</span>
{msg.data.length > 100 ? (
{msg.data.length > 40 ? (
<div
className={
'rounded-full font-bold text-xl p-2 bg-white w-6 h-6 flex items-center justify-center'