diff --git a/src/Components/Profile/Templates/TabsView.tsx b/src/Components/Profile/Templates/TabsView.tsx
index fa045374..bec02e24 100644
--- a/src/Components/Profile/Templates/TabsView.tsx
+++ b/src/Components/Profile/Templates/TabsView.tsx
@@ -150,29 +150,41 @@ export const TabsView = ({
-
-
-
-
- 
+ {getUserProfile(a.user_created.id) ? (
+
+
+
+
+ {getUserProfile(a.user_created.id)?.image && (
+ 
+ )}
+
+
+
+
+ {getUserProfile(a.user_created.id)?.name ??
+ a.user_created.first_name}{' '}
+
+
+ {timeAgo(a.date_created)}
+
-
-
- {getUserProfile(a.user_created.id)?.name}
-
-
- {timeAgo(a.date_created)}
-
+
+ ) : (
+
+ {a.user_created.first_name}
+
+ {timeAgo(a.date_created)}
-
+ )}
|
))}