fix the Discord status bio being too long

This commit is contained in:
Braydon 2024-09-25 17:58:32 -04:00
parent 0e0a4f5c07
commit 8347793ec9

View File

@ -104,7 +104,7 @@ const BannerAvatar = ({
const Bio = ({ bio }: { bio: string }): ReactElement => (
<SimpleTooltip content={bio}>
<div className="p-2 bg-zinc-100 dark:bg-zinc-950/65 text-sm rounded-xl">
{truncateText(bio, 15)}
{truncateText(bio, 10)}
</div>
</SimpleTooltip>
);