diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Home/ViewController/HomeOnboardingViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Home/ViewController/HomeOnboardingViewController.swift index f0dd233b..f37ce715 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Home/ViewController/HomeOnboardingViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Home/ViewController/HomeOnboardingViewController.swift @@ -71,8 +71,6 @@ extension HomeOnboardingViewController { rootView.revertPressAnimation() } pressStartTime = nil - - Mixpanel.mainInstance().track(event: CommonEvents.Name.onboardingComplete) default: break } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift index 173ad2e3..d87cb29d 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift @@ -102,11 +102,6 @@ extension InformationViewController { let quest = SelectQuestType.allCases[index] viewModel.action(.questButtonDidTap(quest)) ByeBooLogger.debug("선택 여정 \(quest)") - let property = CommonEvents.SelectQuestTypeProperty(questType: quest.mixpanelKey) - Mixpanel.mainInstance().track( - event: CommonEvents.Name.questTypeComplete, - properties: property.dictionary - ) } } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Mixpanel/CommonEvents.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Mixpanel/CommonEvents.swift index 481958e3..aaeb4127 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Mixpanel/CommonEvents.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Mixpanel/CommonEvents.swift @@ -12,9 +12,7 @@ struct CommonEvents { static let login = "login" static let nicknameComplete = "nickname_complete" static let currentEmotionComplete = "current_emotion_complete" - static let questTypeComplete = "quest_type_complete" static let journeyCardComplete = "journey_card_complete" - static let onboardingComplete = "onboarding_complete" } }