From 16af9dbacd077bc8ec1535412d0019dfd0e07e8b Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Sat, 18 Nov 2023 00:49:58 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20-=20=EC=9C=A0?= =?UTF-8?q?=EC=A0=80=20=ED=94=84=EB=A1=9C=ED=95=84=20=EB=8B=A4=EC=9D=B4?= =?UTF-8?q?=EC=96=BC=EB=A1=9C=EA=B7=B8=20=EC=9D=98=20=EB=A9=94=EC=8B=9C?= =?UTF-8?q?=EC=A7=80=20=EB=B3=B4=EB=82=B4=EA=B8=B0=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LiveRoomUserProfileDialogView.swift | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/SodaLive/Sources/Live/Room/Dialog/LiveRoomUserProfileDialogView.swift b/SodaLive/Sources/Live/Room/Dialog/LiveRoomUserProfileDialogView.swift index 2a68747..75f91bf 100644 --- a/SodaLive/Sources/Live/Room/Dialog/LiveRoomUserProfileDialogView.swift +++ b/SodaLive/Sources/Live/Room/Dialog/LiveRoomUserProfileDialogView.swift @@ -113,25 +113,6 @@ struct LiveRoomUserProfileDialogView: View { .onTapGesture { onClickFollow(userProfile.userId) } } } - - HStack(spacing: 4) { - Image("ic_message_send") - .resizable() - .frame(width: 18.7, height: 18.7) - - Text("메시지 보내기") - .font(.custom(Font.bold.rawValue, size: 12)) - .foregroundColor(Color(hex: "ffffff")) - } - .padding(.vertical, 7.3) - .frame(maxWidth: .infinity) - .background(Color(hex: "9970ff")) - .cornerRadius(16.7) - .onTapGesture { - AppState.shared.setAppStep(step: .writeTextMessage( - userId: userProfile.userId, - nickname: userProfile.nickname)) - } } .fixedSize(horizontal: false, vertical: true) .padding(.top, 21.3)