fix(creator): 본인 채널 DM 확인을 추가한다

This commit is contained in:
Yu Sung
2026-07-12 18:48:27 +09:00
parent caa74c607d
commit 4f271a77ee
18 changed files with 63 additions and 12 deletions

View File

@@ -236,6 +236,7 @@ struct CreatorChannelView: View {
if let creator = viewModel.response?.creator {
CreatorChannelHeaderSection(
creator: creator,
isOwnCreatorChannel: isOwnCreatorChannel,
onTapTalk: handleTalkTap,
onTapDm: handleDmTap
)
@@ -557,6 +558,12 @@ struct CreatorChannelView: View {
return
}
if isOwnCreatorChannel {
AppState.shared.setPendingMainChatFilter(.dm)
AppState.shared.setAppStep(step: .main)
return
}
AppState.shared.setAppStep(step: .userCreatorChatCreator(creatorId: creatorId))
}