web: Components: Fixed PropTypes at DropDownProfileItem component.

This commit is contained in:
Ilya Oleshko 2019-09-09 17:04:06 +03:00
parent cccdee46a9
commit c524ea84d0

View File

@ -1,4 +1,4 @@
import React from 'react'
import React, { memo } from 'react'
import styled, { css } from 'styled-components'
import PropTypes from 'prop-types'
import Avatar from '../avatar'
@ -53,7 +53,7 @@ const UserEmailWrapper = styled.div`
${commonStyle}
`;
const DropDownProfileItem = React.memo(props => {
const DropDownProfileItem = memo(props => {
//console.log("DropDownItem render");
const { displayName, email, avatarRole, avatarSource } = props;
@ -74,7 +74,7 @@ const DropDownProfileItem = React.memo(props => {
);
});
DropDownItem.propTypes = {
DropDownProfileItem.propTypes = {
displayName: PropTypes.string,
email: PropTypes.string,
avatarRole: PropTypes.oneOf(['owner', 'admin', 'guest', 'user']),