diff --git a/app/soapbox/features/edit_profile/components/profile_preview.js b/app/soapbox/features/edit_profile/components/profile_preview.js index faf3c04d3..808f18a55 100644 --- a/app/soapbox/features/edit_profile/components/profile_preview.js +++ b/app/soapbox/features/edit_profile/components/profile_preview.js @@ -3,8 +3,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes'; import { acctFull } from 'soapbox/utils/accounts'; import StillImage from 'soapbox/components/still_image'; import VerificationBadge from 'soapbox/components/verification_badge'; - - +import { List as ImmutableList } from 'immutable'; const ProfilePreview = ({ account }) => (
@@ -21,7 +20,7 @@ const ProfilePreview = ({ account }) => ( {account.get('display_name')} - {account.get('pleroma').get('tags').includes('verified') && } + {account.getIn(['pleroma', 'tags'], ImmutableList()).includes('verified') && } {acctFull(account)} diff --git a/app/styles/components/drawer.scss b/app/styles/components/drawer.scss index 39e936158..7dc5a1a10 100644 --- a/app/styles/components/drawer.scss +++ b/app/styles/components/drawer.scss @@ -20,7 +20,7 @@ .column, .drawer { flex: 1 1 100%; - overflow: visible; + overflow: hidden; } .drawer__pager {