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)