From cfcc67df963cb96a4f82a506ed1dda52249ab309 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 27 Mar 2025 09:14:29 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=ED=83=AD=20=ED=99=88=20-=20=EC=99=BC=EC=AA=BD=20?= =?UTF-8?q?=EC=83=81=EB=8B=A8=20=EB=A1=9C=EA=B3=A0=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?-=20=EC=98=A4=EB=A5=B8=EC=AA=BD=20=EC=83=81=EB=8B=A8=20?= =?UTF-8?q?=EC=B6=A9=EC=A0=84=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=20=EC=95=84=EC=9D=B4=EC=BD=98=20=EC=B6=94=EA=B0=80=20?= =?UTF-8?q?-=20=EC=98=A4=EB=A5=B8=EC=AA=BD=20=EC=83=81=EB=8B=A8=20?= =?UTF-8?q?=EB=B3=B4=EA=B4=80=ED=95=A8=20=EC=95=84=EC=9D=B4=EC=BD=98=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 --- .../Content/Main/V2/Home/ContentMainTabHomeView.swift | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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: {})) } } }