diff options
author | Brian Kim <brian@tagg.id> | 2021-05-19 17:26:40 -0700 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-05-19 17:26:40 -0700 |
commit | 6e09b4245f3a96560ca0eb74d46e8fd40a164f44 (patch) | |
tree | 586c72d05e2a8d73012aa5c1497df371e5f8a43f /src/components/profile/TaggAvatar.tsx | |
parent | 73cc07e1adce4ecea0f15bd651f8db2e510c9644 (diff) |
Fix redirect
Diffstat (limited to 'src/components/profile/TaggAvatar.tsx')
-rw-r--r-- | src/components/profile/TaggAvatar.tsx | 2 |
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, ); |