From 9a608ee5c8accb1a57053513705715b6648ebc3f Mon Sep 17 00:00:00 2001 From: Alejandro Date: Mon, 13 Feb 2023 16:00:36 +0100 Subject: [PATCH] fix: don't show 0 if there is no description (#290) --- src/Pages/ProfilePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pages/ProfilePage.tsx b/src/Pages/ProfilePage.tsx index 8feab8c..c863568 100644 --- a/src/Pages/ProfilePage.tsx +++ b/src/Pages/ProfilePage.tsx @@ -150,7 +150,7 @@ export default function ProfilePage() { function bio() { return ( - aboutText.length && ( + aboutText.length > 0 && (
{about}