diff --git a/src/Components/Facility/Consultations/BedActivityTimeline.tsx b/src/Components/Facility/Consultations/BedActivityTimeline.tsx
index 5e7ed060809..a4bfa8f9665 100644
--- a/src/Components/Facility/Consultations/BedActivityTimeline.tsx
+++ b/src/Components/Facility/Consultations/BedActivityTimeline.tsx
@@ -133,32 +133,30 @@ const BedTimelineAsset = ({
return (
-
- {newlyLinkedAssets.length !== 0 && (
-
- )}
- {newlyLinkedAssets.map((asset) => (
-
- {asset.name}
-
- ))}
- {existingAssets.length !== 0 && (
-
- )}
- {existingAssets.map((asset) => (
-
- {asset.name}
-
- ))}
- {unlinkedAssets.length !== 0 && (
-
- )}
- {unlinkedAssets.map((asset) => (
-
- {asset.name}
-
- ))}
-
+ {newlyLinkedAssets.length !== 0 && (
+
+ )}
+ {newlyLinkedAssets.map((asset) => (
+
+ {asset.name}
+
+ ))}
+ {existingAssets.length !== 0 && (
+
+ )}
+ {existingAssets.map((asset) => (
+
+ {asset.name}
+
+ ))}
+ {unlinkedAssets.length !== 0 && (
+
+ )}
+ {unlinkedAssets.map((asset) => (
+
+ {asset.name}
+
+ ))}
);
};