Skip to content

Commit 753776f

Browse files
committed
Fix
1 parent 9787a24 commit 753776f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/components/bio/profile-bio.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function ProfileBio(props: {
7979

8080
return (
8181
<Col>
82-
{textLength < MIN_BIO_LENGTH && !edit && <TooShortBio/>}
82+
{textLength < MIN_BIO_LENGTH && !edit && isCurrentUser && <TooShortBio/>}
8383
<Subtitle className="mb-4">About Me</Subtitle>
8484
<BioBlock
8585
isCurrentUser={isCurrentUser}

0 commit comments

Comments
 (0)