Skip to content

Commit

Permalink
[FIX/#96] 코드리뷰 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Jan 14, 2024
1 parent b6f079b commit 3fb0746
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,13 @@ class DashBoardActivity :

private fun initCreateTripBtnClickListener() {
binding.btnDashboardCreateTrip.setOnSingleClickListener {
Intent(this, CreateTripActivity::class.java).apply {
startActivity(this)
}
navigateToDashboard()
}
}

private fun navigateToDashboard() {
Intent(this, CreateTripActivity::class.java).apply {
startActivity(this)
}
}

Expand Down

0 comments on commit 3fb0746

Please sign in to comment.