diff --git a/thoughts-frontend/components/movie-card.tsx b/thoughts-frontend/components/movie-card.tsx index 0ab1deb..bf3a11c 100644 --- a/thoughts-frontend/components/movie-card.tsx +++ b/thoughts-frontend/components/movie-card.tsx @@ -59,7 +59,7 @@ export function MovieCard({ meta, author, createdAt }: MovieCardProps) {
@@ -69,7 +69,7 @@ export function MovieCard({ meta, author, createdAt }: MovieCardProps) { {author.username.startsWith("@") ? author.username : `@${author.username}`} - + {author.username.split("@").filter(Boolean).at(-1)}
diff --git a/thoughts-frontend/components/thought-card.tsx b/thoughts-frontend/components/thought-card.tsx index f19e8b3..21791ad 100644 --- a/thoughts-frontend/components/thought-card.tsx +++ b/thoughts-frontend/components/thought-card.tsx @@ -160,7 +160,7 @@ export function ThoughtCard({ src={author.avatarUrl} alt={author.displayName || author.username} /> -
+
{author.displayName || author.username} @@ -169,7 +169,7 @@ export function ThoughtCard({ {author.username.startsWith("@") ? author.username : `@${author.username}`} - + {author.username.split("@").filter(Boolean).at(-1)}