diff --git a/apps/server/client/pages/(main)/share/lists/[id]/index.tsx b/apps/server/client/pages/(main)/share/lists/[id]/index.tsx index fcd8d040c..0d1ae5ba5 100644 --- a/apps/server/client/pages/(main)/share/lists/[id]/index.tsx +++ b/apps/server/client/pages/(main)/share/lists/[id]/index.tsx @@ -4,6 +4,7 @@ import { askOpenInFollowApp } from "@client/lib/helper" import type { Feed } from "@client/query/feed" import { useList } from "@client/query/list" import { FollowIcon } from "@follow/components/icons/follow.jsx" +import { Avatar, AvatarFallback, AvatarImage } from "@follow/components/ui/avatar/index.jsx" import { Button } from "@follow/components/ui/button/index.jsx" import { FeedIcon } from "@follow/components/ui/feed-icon/index.jsx" import { LoadingCircle } from "@follow/components/ui/loading/index.jsx" @@ -53,12 +54,22 @@ export function Component() { className="mask-squircle mask shrink-0" size={64} /> -
+

{list.data.list.title}

-
-
{list.data.list.description}
+
{list.data.list.description}
+ + {t("feed.madeby")} + + + {list.data.list.owner?.name?.slice(0, 2)} + +
{t("feed.followsAndFeeds", { diff --git a/locales/external/en.json b/locales/external/en.json index f4fbd5c48..853ae4653 100644 --- a/locales/external/en.json +++ b/locales/external/en.json @@ -9,6 +9,7 @@ "feed.follower_other": "followers", "feed.followsAndFeeds": "{{subscriptionCount}} {{subscriptionNoun}} and {{feedsCount}} {{feedsNoun}} on {{appName}}", "feed.followsAndReads": "{{subscriptionCount}} {{subscriptionNoun}} with {{readCount}} recent {{readNoun}} on {{appName}}", + "feed.madeby": "Made by", "feed.read_one": "read", "feed.read_other": "reads", "feed.view_feed_url": "View Feed URL",