diff --git a/thoughts-frontend/components/movie-card.tsx b/thoughts-frontend/components/movie-card.tsx index 42aa298..0a1ee94 100644 --- a/thoughts-frontend/components/movie-card.tsx +++ b/thoughts-frontend/components/movie-card.tsx @@ -65,9 +65,14 @@ export function MovieCard({ meta, author, createdAt }: MovieCardProps) {
{author.displayName ?? author.username} {!author.local && ( - - {author.username.startsWith("@") ? author.username : `@${author.username}`} - +
+ + {author.username.startsWith("@") ? author.username : `@${author.username}`} + + + {author.username.split("@").filter(Boolean).at(-1)} + +
)}