Skip to content

Commit

Permalink
#292 [chore] ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
2zerozu committed Sep 23, 2023
1 parent 9ebb72c commit e3e2cc8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ class FeedbackFragment : BindingFragment<FragmentFeedbackBinding>(R.layout.fragm
if (feedbackViewModel.isDeleting.value) {
findNavController().navigate(R.id.action_feedbackFragment_to_withdrawFragment)
} else {
findNavController().navigate(R.id.action_feedbackFragment_to_withdrawDoneFragment,
findNavController().navigate(
R.id.action_feedbackFragment_to_withdrawDoneFragment,
bundle.apply {
putString(LOCATION, FEEDBACK)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ class WithdrawFragment : BindingFragment<FragmentWithdrawBinding>(R.layout.fragm
}
UiEvent.SUCCESS -> {
loadingDialogFragment?.dismiss()
findNavController().navigate(R.id.action_withdrawFragment_to_withdrawDoneFragment,
findNavController().navigate(
R.id.action_withdrawFragment_to_withdrawDoneFragment,
bundle.apply {
putString(LOCATION, WITHDRAW)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ class WithdrawDoneViewModel : ViewModel() {
fun initLayout(layout: String) {
_layout.value = layout
}
}
}

0 comments on commit e3e2cc8

Please sign in to comment.