From c1679acff910747ffcdfe81b9dd5c4800161a205 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 22 Dec 2023 01:59:01 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B1=84=EB=84=90=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20=EC=95=84=EC=9D=B4?= =?UTF-8?q?=ED=85=9C=20=ED=84=B0=EC=B9=98=ED=95=98=EB=A9=B4=20=EC=BB=A4?= =?UTF-8?q?=EB=AE=A4=EB=8B=88=ED=8B=B0=20=EC=A0=84=EC=B2=B4=EB=B3=B4?= =?UTF-8?q?=EA=B8=B0=20=ED=8E=98=EC=9D=B4=EC=A7=80=EB=A1=9C=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Explorer/Profile/UserProfileView.swift | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift index aa528ca..a3ac34a 100644 --- a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift +++ b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift @@ -77,12 +77,19 @@ struct UserProfileView: View { let item = viewModel.communityPostList[index] CreatorCommunityItemView(item: item) .frame(width: 320) + .onTapGesture { + AppState.shared + .setAppStep( + step: .creatorCommunityAll(creatorId: userId) + ) + } } CreatorCommunityMoreItemView { - AppState.shared.setAppStep( - step: .creatorCommunityAll(creatorId: userId) - ) + AppState.shared + .setAppStep( + step: .creatorCommunityAll(creatorId: userId) + ) } } .padding(.horizontal, 13.3)