From 5fe41f8db34bba9c4e8b3f642ad6ea9b0bcf74af Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 29 Jan 2024 17:40:22 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EA=B3=A0?= =?UTF-8?q?=EC=A0=95=20=ED=8C=9D=EC=97=85=20-=20=EC=82=AC=EB=9D=BC?= =?UTF-8?q?=EC=A7=80=EC=A7=80=20=EC=95=8A=EB=8A=94=20=EB=B2=84=EA=B7=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Content/Detail/ContentDetailView.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 + } ) } }