feat: released 0.0.9 changelog

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-12-24 18:03:22 -08:00
parent b4b7059035
commit 2603db74eb
7 changed files with 207 additions and 2 deletions

View file

@ -11,3 +11,11 @@ export function getChatTitleFromMessages(messages: Message[]) {
if (userMessages.length === 0) return "Untitled Chat";
return userMessages[0].content;
}
export const formatDate = (date: Date): string => {
return date.toLocaleDateString("en-US", {
year: "numeric",
month: "long",
day: "numeric",
});
};