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)