mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-20 10:18:24 -05:00
closes #284
This commit is contained in:
parent
4c9c2e0c4c
commit
b49c79acdb
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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 />
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user