diff --git a/src/app/profile/[address]/page.tsx b/src/app/profile/[address]/page.tsx index 14676210..ee6dd4f3 100644 --- a/src/app/profile/[address]/page.tsx +++ b/src/app/profile/[address]/page.tsx @@ -1079,7 +1079,8 @@ const EVENT_COLORS: Record = { function FeedRow({ entry }: { entry: FeedEntry }) { return ( -
+
+ {/* Row 1 (mobile) / Left (desktop): event type + story title */}
{EVENT_LABELS[entry.type]} @@ -1094,12 +1095,13 @@ function FeedRow({ entry }: { entry: FeedEntry }) { ) : ( Royalties )} +
+ {/* Row 2 (mobile) / Right (desktop): detail + date + tx link */} +
{entry.detail && ( - {entry.detail} + {entry.detail} )} -
-
-