diff --git a/app/components/UserSection/UserSection.tsx b/app/components/UserSection/UserSection.tsx index 4dc7bfe..896ebd2 100644 --- a/app/components/UserSection/UserSection.tsx +++ b/app/components/UserSection/UserSection.tsx @@ -12,20 +12,19 @@ export const UserSection = (props: { sectionTitle?: string; content: any }) => { )}
-
+
{props.content.map((user) => { return ( - - - -
- {user.login} -
+ + +
+ +

{user.login}

+
); })} - {props.content.length == 1 &&
}