마지막 메시지 시간 표시 및 정렬채팅방 목록에서 마지막 메시지 시간 표시 및 정렬 기능을 추가하면,채팅방 목록이 최신 메시지가 있는 순서대로 정렬되고, 마지막 메시지 시간이 보입니다.1. Firestore에 마지막 메시지 시간 저장메시지를 보낼 때 lastMessageAt 필드를 업데이트해야 해.🔹 메시지 전송 함수 수정import { updateDoc, doc, serverTimestamp } from "firebase/firestore";const sendMessage = async (chatId, sender, message) => { const messageRef = doc(db, "chats", chatId); // 메시지 추가 & lastMessageAt 업데이트 await update..