- The fix is in! Linty fresh and pretty...
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { getProfileAvatarUrl } from '../../../selectors/profile.js';
|
||||
import {
|
||||
getProfileAvatarUrl,
|
||||
getUserInitials,
|
||||
isRegisteredAccount,
|
||||
} from '../../../selectors/profile.js';
|
||||
|
||||
import UserProfileButton from './UserProfileButton.js';
|
||||
|
||||
const matchStateToProps = (state) => ({
|
||||
avatarUrl: getProfileAvatarUrl(state),
|
||||
initials: getUserInitials(state),
|
||||
isRegisteredAccount: isRegisteredAccount(state),
|
||||
});
|
||||
|
||||
export default connect(
|
||||
|
||||
Reference in New Issue
Block a user