Skip to content

Commit

Permalink
Remove duplicated team biography on team profile view (#900)
Browse files Browse the repository at this point in the history
:shipit:
  • Loading branch information
spsquared authored Jan 13, 2025
1 parent a1789b1 commit 88c68ed
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions frontend/src/views/TeamProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,8 @@ const TeamProfile: React.FC = () => {
)}
</div>
<div>
<div className="font-medium">Biography</div>
<div className="text-sm text-gray-800">
{isNilOrEmptyStr(team.data.profile?.biography) ? (
<span className="italic text-gray-500">
This team does not have a biography
</span>
) : (
team.data.profile?.biography
)}
</div>
<div>
<div className="font-medium">Team biography</div>
<div className="font-medium">Biography</div>
<div className="text-sm text-gray-800">
{isNilOrEmptyStr(team.data.profile?.biography) ? (
<span className="italic text-gray-500">
Expand Down

0 comments on commit 88c68ed

Please sign in to comment.