mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
Fix profile page review author image include
This commit is contained in:
parent
fb56e5d4d8
commit
508acf0a68
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ export const queryUserListings = userId => (dispatch, getState, sdk) => {
|
|||
|
||||
export const queryUserReviews = userId => (dispatch, getState, sdk) => {
|
||||
sdk.reviews
|
||||
.query({ subject_id: userId, state: 'public', include: ['author', 'author_profile_image'] })
|
||||
.query({ subject_id: userId, state: 'public', include: ['author', 'author.profileImage'] })
|
||||
.then(response => {
|
||||
const reviews = denormalisedResponseEntities(response);
|
||||
dispatch(queryReviewsSuccess(reviews));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue