diff --git a/SodaLive/Sources/Content/Detail/ContentDetailView.swift b/SodaLive/Sources/Content/Detail/ContentDetailView.swift index ffceeb9..4830ea6 100644 --- a/SodaLive/Sources/Content/Detail/ContentDetailView.swift +++ b/SodaLive/Sources/Content/Detail/ContentDetailView.swift @@ -305,10 +305,13 @@ struct ContentDetailView: View { "이 콘텐츠를 고정하면 가장 오래된 콘텐츠가 대체됩니다.", confirmButtonTitle: "확인", confirmButtonAction: { + viewModel.isShowNoticePinContentPopup = false viewModel.pinContent(contentId: contentId) }, cancelButtonTitle: "취소", - cancelButtonAction: {} + cancelButtonAction: { + viewModel.isShowNoticePinContentPopup = false + } ) } }