reform the message box with bubble style

This commit is contained in:
ecwu
2024-07-16 23:01:18 +08:00
parent 0ae53ff954
commit 4bf3e02962
6 changed files with 81 additions and 57 deletions

View File

@@ -6,7 +6,5 @@ interface Props {
}
export function MessageHide({ chat }: Props) {
return (
<div>{getMessageText(chat).split("\n")[0].slice(0, 18)} ... (deleted)</div>
);
return <div>{getMessageText(chat).split("\n")[0].slice(0, 18)} ...</div>;
}