diff options
-rw-r--r-- | src/pages/ProfilePage/ProfileInfo.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pages/ProfilePage/ProfileInfo.tsx b/src/pages/ProfilePage/ProfileInfo.tsx index fada65f..659d104 100644 --- a/src/pages/ProfilePage/ProfileInfo.tsx +++ b/src/pages/ProfilePage/ProfileInfo.tsx @@ -107,7 +107,6 @@ const ProfileInfo: React.FC<PropTypes> = ({ <MoreMenu logOut={logOut} /> <div className={classes.avatarContainer}> <Badge - onClick={handleClick} overlap="circle" anchorOrigin={{ vertical: 'bottom', @@ -115,7 +114,7 @@ const ProfileInfo: React.FC<PropTypes> = ({ }} badgeContent={( <div className={classes.badge}> - <CameraAltIcon /> + <CameraAltIcon onClick={handleClick} /> </div> )} > |