diff --git a/web/components/ui/followers/FollowerCollection/FollowerCollection.stories.tsx b/web/components/ui/followers/FollowerCollection/FollowerCollection.stories.tsx index eda0c5911..fb5bceea6 100644 --- a/web/components/ui/followers/FollowerCollection/FollowerCollection.stories.tsx +++ b/web/components/ui/followers/FollowerCollection/FollowerCollection.stories.tsx @@ -261,6 +261,9 @@ const noFollowersMock = { export default { title: 'owncast/Components/Followers/Followers collection', component: FollowerCollection, + parameters: { + chromatic: { diffThreshold: 0.83 }, + }, } as ComponentMeta; const Template: ComponentStory = (args: object) => ( diff --git a/web/components/ui/followers/SingleFollower/SingleFollower.tsx b/web/components/ui/followers/SingleFollower/SingleFollower.tsx index 37447648b..74b427855 100644 --- a/web/components/ui/followers/SingleFollower/SingleFollower.tsx +++ b/web/components/ui/followers/SingleFollower/SingleFollower.tsx @@ -22,7 +22,9 @@ export const SingleFollower: FC = ({ follower }) => ( - {follower.name || follower.username} + + {follower.name || follower.username.split('@', 2)[0]} + {follower.username}