diff --git a/app/soapbox/features/ui/components/profile_fields_panel.tsx b/app/soapbox/features/ui/components/profile_fields_panel.tsx index 01e0c55af..dbe02c5df 100644 --- a/app/soapbox/features/ui/components/profile_fields_panel.tsx +++ b/app/soapbox/features/ui/components/profile_fields_panel.tsx @@ -2,7 +2,7 @@ import classNames from 'classnames'; import React from 'react'; import { defineMessages, useIntl, FormattedMessage, FormatDateOptions } from 'react-intl'; -import { Widget, Stack, Icon, Text } from 'soapbox/components/ui'; +import { Widget, Stack, HStack, Icon, Text } from 'soapbox/components/ui'; import BundleContainer from 'soapbox/features/ui/containers/bundle_container'; import { CryptoAddress } from 'soapbox/features/ui/util/async-components'; @@ -55,16 +55,18 @@ const ProfileField: React.FC = ({ field }) => {
- {field.verified_at && ( - - - - )} + + {field.verified_at && ( + + + + )} - + +
);