Skip to content

Commit

Permalink
[#15] fix: 수정된 리뷰가 리뷰 상세 화면에 반영되지 않는 버그 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
reesekimm committed Oct 9, 2020
1 parent 77d66b5 commit 0e2f390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/molecules/ReviewListItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function ReviewListItem(review: IReview.Review): React.ReactElement {
const dispatch = useDispatch();
const openReviewDetailModal = useCallback(() => {
dispatch(actions.openReviewDetailModal(review));
}, []);
}, [review]);

return (
<S.Container>
Expand Down

0 comments on commit 0e2f390

Please sign in to comment.