aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/TaggAvatar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/profile/TaggAvatar.tsx')
-rw-r--r--src/components/profile/TaggAvatar.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/profile/TaggAvatar.tsx b/src/components/profile/TaggAvatar.tsx
index 8ccae2ef..8cd52a2f 100644
--- a/src/components/profile/TaggAvatar.tsx
+++ b/src/components/profile/TaggAvatar.tsx
@@ -23,6 +23,8 @@ const TaggAvatar: React.FC<TaggAvatarProps> = ({
userXId,
editable = false,
}) => {
+ const state = useSelector((state: RootState) => state);
+ console.log('STATE', state.userX);
const {avatar, user} = useSelector((state: RootState) =>
userXId ? state.userX[screenType][userXId] : state.user,
);