This commit is contained in:
Kalle (Sendou) 2021-03-09 14:34:31 +02:00
parent 4c9c2e0c4c
commit b49c79acdb
2 changed files with 4 additions and 8 deletions

View File

@ -16,13 +16,7 @@ const RosterPlayerBar: React.FC<Props> = ({ user }) => {
return (
<>
<MyLink href={`/u/${user.discordId}`}>
<UserAvatar
user={user}
size="lg"
borderRadius={0}
w={[8, null, 12]}
h={[8, null, 12]}
/>
<UserAvatar user={user} size="lg" w={[8, null, 12]} h={[8, null, 12]} />
</MyLink>
<Flex
bg={secondaryBgColor}

View File

@ -244,7 +244,9 @@ const TeamPage: React.FC<Props> = (props) => {
))}
</Grid>
<Divider my={4} maxW="75ch" mx="auto" />
{(team.bio || team.recruitingPost) && (
<Divider my={4} maxW="75ch" mx="auto" />
)}
{team.bio && (
<Box maxW="75ch" mx="auto">
<Markdown value={team.bio} smallHeaders />