Web: People: Applied prettier style fix

This commit is contained in:
Nikita Gopienko 2021-07-09 16:15:13 +03:00
parent dde99b792a
commit 4cd1b3fa75

View File

@ -340,7 +340,7 @@ class SectionBodyContent extends React.PureComponent {
isSelf,
providers,
backupCodes,
personal
personal,
} = this.props;
const contacts = profile.contacts && getUserContacts(profile.contacts);
const role = getUserRole(profile);
@ -535,13 +535,13 @@ export default withRouter(
backupCodes,
setBackupCodes,
setIsEditTargetUser,
personal: auth.settingsStore.personal
personal: auth.settingsStore.personal,
};
})(
observer(
withTranslation(["Profile", "Common", "Translations"])(
withLoader(SectionBodyContent)(<Loaders.ProfileView />)
)
)
)
)
);