Update event list to show both date and time

This commit is contained in:
2025-05-01 10:26:12 -04:00
parent 78a81d060c
commit f18e5b6d87

View File

@@ -96,7 +96,7 @@ const EventList: React.FC = () => {
{event.title}
</Typography>
<Typography color="textSecondary" gutterBottom>
{new Date(event.date).toLocaleDateString()} at {event.location}
{new Date(event.date).toLocaleString()} at {event.location}
</Typography>
<Typography variant="body2" component="p">
{event.description}