From 893474e78827968981090be774ee39bb0466b25d Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 17 May 2022 11:27:04 -0400 Subject: [PATCH] Fix verified flag --- .../features/edit_profile/components/profile-preview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/features/edit_profile/components/profile-preview.tsx b/app/soapbox/features/edit_profile/components/profile-preview.tsx index 2f355fe64..9970cfaf1 100644 --- a/app/soapbox/features/edit_profile/components/profile-preview.tsx +++ b/app/soapbox/features/edit_profile/components/profile-preview.tsx @@ -29,7 +29,7 @@ const ProfilePreview: React.FC = ({ account }) => { - {!account.verified &&
} + {account.verified &&
}