From 468a876e33f6b48f153f73ea2e85318f2ea4c5d5 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 30 Aug 2024 17:53:57 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EB=B0=A9=20-=20?= =?UTF-8?q?=ED=9B=84=EC=9B=90=ED=98=84=ED=99=A9=EA=B3=BC=20=ED=9B=84?= =?UTF-8?q?=EC=9B=90=ED=95=98=EA=B8=B0=20=EB=B2=84=ED=8A=BC=20=EC=88=9C?= =?UTF-8?q?=EC=84=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index cda0b85..2699e9f 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -203,17 +203,17 @@ struct LiveRoomViewV2: View { ) } + LiveRoomRightBottomButton( + imageName: "ic_donation_message_list", + onClick: { viewModel.isShowDonationMessagePopup = true } + ) + if liveRoomInfo.creatorId != UserDefaults.int(forKey: .userId) { LiveRoomRightBottomButton( imageName: "ic_donation", onClick: { viewModel.isShowDonationPopup = true } ) } - - LiveRoomRightBottomButton( - imageName: "ic_donation_message_list", - onClick: { viewModel.isShowDonationMessagePopup = true } - ) } .padding(.trailing, 13.3)