diff --git a/client/src/entities/review/api/reviews-api.ts b/client/src/entities/review/api/reviews-api.ts index badcf9e..b7aefc5 100644 --- a/client/src/entities/review/api/reviews-api.ts +++ b/client/src/entities/review/api/reviews-api.ts @@ -25,6 +25,7 @@ export type PublicReviewFeedItem = { text: string | null imageUrl: string | null createdAt: string + authorId: string authorDisplay: string authorAvatar?: string | null authorAvatarStyle?: string | null @@ -53,6 +54,7 @@ export type PublicProductReviewItem = { text: string | null imageUrl: string | null createdAt: string + authorId: string authorDisplay: string authorAvatar?: string | null authorAvatarStyle?: string | null diff --git a/client/src/features/product-review/ui/ProductReviewsList.tsx b/client/src/features/product-review/ui/ProductReviewsList.tsx index a7f05e4..b98e351 100644 --- a/client/src/features/product-review/ui/ProductReviewsList.tsx +++ b/client/src/features/product-review/ui/ProductReviewsList.tsx @@ -20,7 +20,7 @@ function ReviewItem({ rv }: { rv: PublicProductReviewItem }) {