fix(chat): Direct 대화방 진입을 분기한다
This commit is contained in:
@@ -7,7 +7,7 @@ struct MainHomeFollowingView: View {
|
||||
let onTapLogin: () -> Void
|
||||
let onTapFollowingAll: () -> Void
|
||||
let onTapChatTab: () -> Void
|
||||
let onTapChatRoom: (Int) -> Void
|
||||
let onTapChatRoom: (Int, String) -> Void
|
||||
let onTapSchedule: (CreatorActivityType, Int) -> Void
|
||||
let onTapCommunityPost: (Int) -> Void
|
||||
|
||||
@@ -20,7 +20,7 @@ struct MainHomeFollowingView: View {
|
||||
onTapLogin: @escaping () -> Void = {},
|
||||
onTapFollowingAll: @escaping () -> Void = {},
|
||||
onTapChatTab: @escaping () -> Void = {},
|
||||
onTapChatRoom: @escaping (Int) -> Void = { _ in },
|
||||
onTapChatRoom: @escaping (Int, String) -> Void = { _, _ in },
|
||||
onTapSchedule: @escaping (CreatorActivityType, Int) -> Void = { _, _ in },
|
||||
onTapCommunityPost: @escaping (Int) -> Void = { _ in }
|
||||
) {
|
||||
|
||||
Reference in New Issue
Block a user