From 484368572e62cfbb3e59fc31b354c1e587fb13ad Mon Sep 17 00:00:00 2001 From: JURI <80569323+juri123123@users.noreply.github.com> Date: Sun, 29 Mar 2026 21:27:56 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20#424=20=EB=A1=9C=EA=B9=85=20?= =?UTF-8?q?=EB=84=A4=EC=9D=B4=EB=B0=8D=20=EB=B3=80=EA=B2=BD=EC=82=AC?= =?UTF-8?q?=ED=95=AD=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Home/ViewController/HomeOnboardingViewController.swift | 2 -- .../ViewController/InformationViewController.swift | 5 ----- .../ByeBoo-iOS/Presentation/Mixpanel/CommonEvents.swift | 2 -- 3 files changed, 9 deletions(-) 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" } }