feat(creator): 팔로워 목록 이동을 연결한다

This commit is contained in:
Yu Sung
2026-08-03 21:43:56 +09:00
parent 2db4ef1c35
commit aea5b5cdec
4 changed files with 45 additions and 0 deletions

View File

@@ -237,6 +237,11 @@ struct CreatorChannelView: View {
CreatorChannelHeaderSection(
creator: creator,
isOwnCreatorChannel: isOwnCreatorChannel,
onTapFollowerCount: {
if isOwnCreatorChannel {
AppState.shared.setAppStep(step: .followerList(userId: creator.creatorId))
}
},
onTapTalk: handleTalkTap,
onTapDm: handleDmTap
)