Skip to content

Commit

Permalink
[feature/#835] Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
l2hyunwoo committed Sep 8, 2024
1 parent 2198724 commit 2df481c
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,7 @@ class NotificationActivity : AppCompatActivity() {
notificationHistoryAdapter?.updateNotificationReadingState(position)
val notificationId = viewModel.notificationHistoryList.value[position].notificationId

startActivity(
NotificationDetailActivity.getIntent(
this, NotificationDetailActivity.StartArgs(notificationId)
)
)
startActivity(NotificationDetailActivity.getIntent(this, notificationId))
}

private val scrollListener = object : RecyclerView.OnScrollListener() {
Expand Down

0 comments on commit 2df481c

Please sign in to comment.