aboutsummaryrefslogtreecommitdiff
path: root/lume/src/_components/EventCard.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'lume/src/_components/EventCard.jsx')
-rw-r--r--lume/src/_components/EventCard.jsx4
1 files changed, 2 insertions, 2 deletions
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 }) => {
</h2>
<div className="card-content text-fg-1 dark:text-fgDark-1">
<p>
- {location} - {startDate} {start_date.seconds !== end_date.seconds ? `thru ${endDate})}` : ""}
+ {location} - {startDate} {start_date.seconds !== end_date.seconds ? `thru ${endDate}` : ""}
</p>
<p className="prose dark:prose-invert">
{description}
@@ -31,4 +31,4 @@ export default ({ name, url, start_date, end_date, location, description }) => {
</div>
</div>
);
-}; \ No newline at end of file
+};