From 6f99396bc4c77e08eb149df39c8b41af8973ed3c Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 1 Jul 2023 23:14:27 -0500 Subject: [PATCH] Fix profile fields panel from not showing up --- app/soapbox/pages/profile-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/pages/profile-page.tsx b/app/soapbox/pages/profile-page.tsx index b4c746473..2274db5c2 100644 --- a/app/soapbox/pages/profile-page.tsx +++ b/app/soapbox/pages/profile-page.tsx @@ -120,7 +120,7 @@ const ProfilePage: React.FC = ({ params, children }) => { {Component => } - {account && !account.fields.length && ( + {account && account.fields.length && ( {Component => }