diff options
Diffstat (limited to 'src/store')
| -rw-r--r-- | src/store/actions/user.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/actions/user.ts b/src/store/actions/user.ts index aae38d94..46f96d9a 100644 --- a/src/store/actions/user.ts +++ b/src/store/actions/user.ts @@ -42,8 +42,8 @@ export const loadUserData = ( const token = await getTokenOrLogout(dispatch); const [profile, avatar, cover] = await Promise.all([ loadProfileInfo(token, user.userId), - getProfilePic(token, user.userId, 'small'), - getProfilePic(token, user.userId, 'large'), + getProfilePic(token, user.userId, 'profile'), + getProfilePic(token, user.userId, 'header'), ]); dispatch({ type: userDetailsFetched.type, |
