From b045736a19d3a45a2fdf86853f451fc69047d083 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Mon, 27 May 2024 09:14:27 -0400 Subject: fix formatting of the end date on /events Signed-off-by: Xe Iaso --- lume/src/_components/EventCard.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lume/src/_components/EventCard.jsx') diff --git a/lume/src/_components/EventCard.jsx b/lume/src/_components/EventCard.jsx index aa34b04..d8b604c 100644 --- a/lume/src/_components/EventCard.jsx +++ b/lume/src/_components/EventCard.jsx @@ -23,7 +23,7 @@ export default ({ name, url, start_date, end_date, location, description }) => {

- {location} - {startDate} {start_date.seconds !== end_date.seconds ? `thru ${endDate})}` : ""} + {location} - {startDate} {start_date.seconds !== end_date.seconds ? `thru ${endDate}` : ""}

{description} @@ -31,4 +31,4 @@ export default ({ name, url, start_date, end_date, location, description }) => {

); -}; \ No newline at end of file +}; -- cgit v1.2.3