fix: user bio width when booking a team member (#1264)

pull/1261/head^2
Bill Gale 2021-12-07 10:02:36 +00:00 committed by GitHub
parent 6792e17c80
commit b11d81fdd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ const Team = ({ team }) => {
<Avatar displayName={member.user.name} imageSrc={member.user.avatar} className="w-12 h-12" />
<section className="space-y-2">
<Text variant="title">{member.user.name}</Text>
<Text variant="subtitle" className="w-6/8">
<Text variant="subtitle" className="w-6/8 max-w-md">
{member.user.bio}
</Text>
</section>