feat(chat): 유저 크리에이터 DM을 추가한다
This commit is contained in:
@@ -4,6 +4,7 @@ import Kingfisher
|
||||
struct CreatorChannelHeaderSection: View {
|
||||
let creator: CreatorChannelCreatorResponse
|
||||
let onTapTalk: () -> Void
|
||||
let onTapDm: () -> Void
|
||||
|
||||
var body: some View {
|
||||
ZStack(alignment: .bottom) {
|
||||
@@ -52,7 +53,9 @@ struct CreatorChannelHeaderSection: View {
|
||||
|
||||
CreatorChannelTalkActionSection(
|
||||
isAiChatAvailable: creator.isAiChatAvailable,
|
||||
onTapTalk: onTapTalk
|
||||
isDmAvailable: creator.isDmAvailable,
|
||||
onTapTalk: onTapTalk,
|
||||
onTapDm: onTapDm
|
||||
)
|
||||
}
|
||||
.frame(maxWidth: .infinity)
|
||||
|
||||
Reference in New Issue
Block a user