diff --git a/src/components/ItemBodyView/ItemBodyView.js b/src/components/ItemBodyView/ItemBodyView.js
index ba1fbf2..1d7c4f8 100644
--- a/src/components/ItemBodyView/ItemBodyView.js
+++ b/src/components/ItemBodyView/ItemBodyView.js
@@ -31,33 +31,19 @@ export default function ItemBodyView({ item }) {
const generateTimelineItem = (section) => {
switch (section.type) {
case "directory_information":
- return (
-
- );
+ return
case "initial_message":
- return (
-
- );
+ return
case "edit":
- return (
-
- );
+ return
case "status":
- return (
-
- );
+ return
case "assignment":
- return (
-
- );
+ return
case "reply_to_user":
- return (
-
- );
+ return
case "reply_from_user":
- return (
-
- );
+ return
default:
return `No match found for type: ${section.type}`;
};