Skip to content

Commit

Permalink
[FEAT/#294] mypage modify amplitude
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Oct 21, 2024
1 parent d1477b6 commit 9bdf61b
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,13 @@ fun MyPageRoute(
is UiState.Success -> {
MyPageScreen(
paddingValues = paddingValues,
onEditClick = viewModel::navigateToProfileEdit,
onEditClick = {
amplitudeTracker.track(
type = EventType.CLICK,
name = "mypage_modify_profile"
)
viewModel.navigateToProfileEdit()
},
onLogoutClick = { viewModel.fetchShowLogoutBottomSheet(true) },
onQuitClick = { viewModel.fetchShowQuitBottomSheet(true) },
onNoticeClick = {
Expand Down

0 comments on commit 9bdf61b

Please sign in to comment.