diff --git a/spa/src/components/movie-card.tsx b/spa/src/components/movie-card.tsx
index ac1fa4c..605dfcb 100644
--- a/spa/src/components/movie-card.tsx
+++ b/spa/src/components/movie-card.tsx
@@ -8,7 +8,7 @@ type MovieCardProps = {
movie: MovieDto
rating?: number
comment?: string
- subtitle?: string
+ subtitle?: React.ReactNode
variant?: "compact" | "full"
action?: React.ReactNode
}
diff --git a/spa/src/components/profile-view.tsx b/spa/src/components/profile-view.tsx
index d42b07f..5f2be06 100644
--- a/spa/src/components/profile-view.tsx
+++ b/spa/src/components/profile-view.tsx
@@ -13,7 +13,7 @@ import { EmptyState } from "@/components/empty-state"
import { SwipeTabs } from "@/components/swipe-tabs"
import { VirtualList } from "@/components/virtual-list"
import { useInfiniteDiary } from "@/hooks/use-diary"
-import { timeAgo } from "@/lib/date"
+import { TimeAgo } from "@/components/time-ago"
import type { UserProfileResponse } from "@/lib/api/users"
type ProfileViewProps = {
@@ -168,7 +168,7 @@ function DiaryTab({ sortBy, userId, search }: { sortBy: string; userId?: string;
movie={e.movie}
rating={e.review.rating}
comment={e.review.comment}
- subtitle={t("profile.watchedAgo", { when: timeAgo(e.review.watched_at) })}
+ subtitle={<>