sdy

remove console.log

......@@ -16,12 +16,9 @@ const ProfileIcon = styled.img`
`;
export default ({ avatar }) => {
if (avatar === "") {
console.log("avatar link is empty");
}
return (
<ProfileIconBox className="ProfileIconBox">
<ProfileIcon src={DefaultIcon} />
<ProfileIcon src={DefaultIcon} avatar={avatar} />
</ProfileIconBox>
);
};
......