The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

improve message dates

Luna 15a58d1a 291384e2

+8 -3
+8 -3
components/discord/message.tsx
··· 33 33 }: Props) { 34 34 35 35 function formatTime(date: Date) { 36 - const timeString = date.toLocaleString("en-US", { hour: "numeric", minute: "numeric" }); 36 + const timeString = date.toLocaleString("en-US", { 37 + hour: "numeric", 38 + minute: "numeric", 39 + timeZone: "Europe/Vienna" 40 + }); 41 + 37 42 return `Today at ${timeString}`; 38 43 } 39 44 ··· 85 90 } 86 91 <time 87 92 className="mt-[2px] text-xs opacity-70 font-light" 88 - dateTime={new Date(955988260).toISOString()} 93 + dateTime={new Date().toISOString()} 89 94 > 90 - {formatTime(new Date(955988260))} 95 + {formatTime(new Date())} 91 96 </time> 92 97 </div> 93 98