콘텐츠 고정 팝업

- 사라지지 않는 버그 수정
This commit is contained in:
Yu Sung 2024-01-29 17:40:22 +09:00
parent 6aaf383013
commit 5fe41f8db3
1 changed files with 4 additions and 1 deletions

View File

@ -305,10 +305,13 @@ struct ContentDetailView: View {
"이 콘텐츠를 고정하면 가장 오래된 콘텐츠가 대체됩니다.", "이 콘텐츠를 고정하면 가장 오래된 콘텐츠가 대체됩니다.",
confirmButtonTitle: "확인", confirmButtonTitle: "확인",
confirmButtonAction: { confirmButtonAction: {
viewModel.isShowNoticePinContentPopup = false
viewModel.pinContent(contentId: contentId) viewModel.pinContent(contentId: contentId)
}, },
cancelButtonTitle: "취소", cancelButtonTitle: "취소",
cancelButtonAction: {} cancelButtonAction: {
viewModel.isShowNoticePinContentPopup = false
}
) )
} }
} }