diff --git a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift index 45b26b9..2222259 100644 --- a/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift +++ b/SodaLive/Sources/Content/Main/V2/Home/ContentMainTabHomeView.swift @@ -19,11 +19,6 @@ struct ContentMainTabHomeView: View { ScrollView(.vertical, showsIndicators: false) { VStack(alignment: .leading, spacing: 0) { HStack(spacing: 0) { - Image("ic_launcher") - .resizable() - .frame(width: 33.3, height: 33.3) - .cornerRadius(6.7) - Text("보이스온") .font(.custom(Font.bold.rawValue, size: 21.3)) .foregroundColor(Color.white) @@ -32,9 +27,11 @@ struct ContentMainTabHomeView: View { Spacer() if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { - Image("ic_content_keep") + Image("ic_can") .onTapGesture { - AppState.shared.setAppStep(step: .myBox(currentTab: .orderlist)) + AppState + .shared + .setAppStep(step: .canCharge(refresh: {})) } } }