1
0
forked from noxious/client

Minor fix and format

This commit is contained in:
2025-02-14 02:23:13 +01:00
parent f83e2bf8c8
commit 8bf67ab168
10 changed files with 36 additions and 57 deletions

View File

@ -82,7 +82,6 @@ const scrollToBottom = () => {
gameStore.connection?.on(SocketEvent.CHAT_MESSAGE, (data: { character: string; message: string }) => {
if (!data.character || !data.message) return
chats.value.push({ character: data.character, message: data.message })
scrollToBottom()