diff --git a/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift b/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift index 1822b1a..dd65836 100644 --- a/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift +++ b/SodaLive/Sources/Live/Reservation/All/LiveReservationAllView.swift @@ -57,34 +57,16 @@ struct LiveReservationAllView: View { .resizable() .frame(width: 60, height: 60) - Text("마이페이지에서 본인인증을 하거나\n다른 날짜의 라이브를 예약하고 참여해 보세요") + Text("지금 예약중인 라이브가 없습니다.\n다른 날짜의 라이브를 예약하고 참여해 보세요.") .font(.custom(Font.medium.rawValue, size: 13)) .foregroundColor(Color(hex: "bbbbbb")) .multilineTextAlignment(.center) .lineSpacing(8) .padding(.top, 8) - - HStack(spacing: 0) { - Image("ic_plus_no_bg") - .resizable() - .frame(width: 33.3, height: 33.3, alignment: .center) - - Text("라이브 만들기") - .font(.custom(Font.bold.rawValue, size: 13.3)) - .foregroundColor(Color.white) - } - .frame(width: 200, height: 33.3, alignment: .center) - .background(Color(hex: "3bb9f1")) - .cornerRadius(4.7) - .padding(.top, 10.7) - .onTapGesture { - AppState.shared.back() - onTapCreateLive() - } } .padding(.vertical, 16.7) .frame(width: screenSize().width - 26.7) - .background(Color(hex: "13181b")) + .background(Color.bg) .cornerRadius(4.7) .padding(.top, 28.3) }