fix: Local message history inversion

This commit is contained in:
April Hall 2025-01-19 21:48:14 -05:00
parent 6e60cf94b4
commit 25246247cc
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B

View File

@ -14,7 +14,7 @@
let msg: string = $state(''); let msg: string = $state('');
function logEvent(newMsg: TypeMessage) { function logEvent(newMsg: TypeMessage) {
log = [...log, newMsg]; log = [newMsg, ...log];
} }
function establishSocketIOConnection() { function establishSocketIOConnection() {