diff --git a/packages/ui/src/components/AuthorRow.tsx b/packages/ui/src/components/AuthorRow.tsx
index 77d5e7a718..19756b4b72 100644
--- a/packages/ui/src/components/AuthorRow.tsx
+++ b/packages/ui/src/components/AuthorRow.tsx
@@ -134,38 +134,37 @@ export function ChatAuthorRow({
const shouldTruncate = showEditedIndicator || firstRole || deliveryFailed;
return (
-
-
-
-
-
-
+
+
+
+
+
+
+ {timeDisplay && (
+
+ {timeDisplay}
+
+ )}
+ {showEditedIndicator && (
+
+ Edited
+
+ )}
+ {firstRole && }
+ {deliveryFailed ? (
+
+ Tap to retry
- {timeDisplay && (
-
- {timeDisplay}
-
- )}
- {showEditedIndicator && (
-
- Edited
-
- )}
- {firstRole && }
- {deliveryFailed ? (
-
- Tap to retry
-
- ) : null}
-
- {!!deliveryStatus && deliveryStatus !== 'failed' ? (
-
) : null}
-
+ {!!deliveryStatus && deliveryStatus !== 'failed' ? (
+
+ ) : null}
+
);
}