aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/TaggAvatar.tsx
diff options
context:
space:
mode:
authorBrian Kim <brian@tagg.id>2021-05-20 16:50:24 -0700
committerBrian Kim <brian@tagg.id>2021-05-20 16:50:24 -0700
commit0b4cbd6f9d7aa56c0200bd19ea5df4abd6964964 (patch)
tree0da3383d6d1076307affb4f6465fcddc09a9821c /src/components/profile/TaggAvatar.tsx
parent12d2930aa67e0c03aada966d6bb50541730cc656 (diff)
Fix zIndex draggable placement
Diffstat (limited to 'src/components/profile/TaggAvatar.tsx')
-rw-r--r--src/components/profile/TaggAvatar.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/profile/TaggAvatar.tsx b/src/components/profile/TaggAvatar.tsx
index 8cd52a2f..135c6e5a 100644
--- a/src/components/profile/TaggAvatar.tsx
+++ b/src/components/profile/TaggAvatar.tsx
@@ -23,8 +23,8 @@ const TaggAvatar: React.FC<TaggAvatarProps> = ({
userXId,
editable = false,
}) => {
- const state = useSelector((state: RootState) => state);
- console.log('STATE', state.userX);
+ // const state = useSelector((state: RootState) => state);
+ // console.log('STATE', state.userX);
const {avatar, user} = useSelector((state: RootState) =>
userXId ? state.userX[screenType][userXId] : state.user,
);