diff --git a/src/components/Event.tsx b/src/components/Event.tsx
index 97d5fb3..892cdf4 100644
--- a/src/components/Event.tsx
+++ b/src/components/Event.tsx
@@ -35,7 +35,7 @@ class Event extends React.PureComponent {
{this.props.item.location}
-
{this.props.item.description}
+
{this.props.item.description}
{(this.props.item.attendees.length > 0) && (
Attendees: {this.props.item.attendees.map((x) => (x.getFirstValue())).join(', ')}
)}
diff --git a/src/components/Tasks/Task.tsx b/src/components/Tasks/Task.tsx
index 334526b..ed71e9e 100644
--- a/src/components/Tasks/Task.tsx
+++ b/src/components/Tasks/Task.tsx
@@ -42,7 +42,7 @@ class Task extends React.PureComponent {
{this.props.item.location}
-
{this.props.item.description}
+
{this.props.item.description}
{(this.props.item.attendees.length > 0) && (
Attendees: {this.props.item.attendees.map((x) => (x.getFirstValue())).join(', ')}
)}