콘텐츠 답글 - 댓글이 랜덤으로 보이는 버그 수정

This commit is contained in:
Yu Sung
2023-09-13 16:54:24 +09:00
parent 3bcd2b7dba
commit 48b1093dac
3 changed files with 15 additions and 26 deletions

View File

@@ -92,8 +92,8 @@ struct AudioContentListReplyView: View {
.padding(.horizontal, 13.3)
AudioContentCommentItemView(
isDisabledNavigationLink: .constant(false),
contentCreatorId: creatorId,
audioContentId: audioContentId,
commentItem: parentComment,
isReplyComment: true,
isShowPopupMenuButton: false,
@@ -108,8 +108,8 @@ struct AudioContentListReplyView: View {
ForEach(0..<viewModel.commentList.count, id: \.self) { index in
let comment = viewModel.commentList[index]
AudioContentCommentItemView(
isDisabledNavigationLink: .constant(false),
contentCreatorId: creatorId,
audioContentId: audioContentId,
commentItem: comment,
isReplyComment: true,
isShowPopupMenuButton: true,