Skip to content

Commit

Permalink
fix: onclickItem 추가 (누락)
Browse files Browse the repository at this point in the history
  • Loading branch information
eunseo0105 committed Aug 13, 2024
1 parent 58778c4 commit 58fdc01
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fun MemberScreen(
viewModel: MemberViewModel = hiltViewModel(),
agencyId: Int,
agencyList: List<MyAgencyResponse>,
changeAgency: (agencyId: Int) -> Unit,
onClickItem: (agencyId: Int) -> Unit,
changeAgencyList: (changeAgencyList: List<MyAgencyResponse>) -> Unit
) {
val sheetState = rememberModalBottomSheetState(
Expand Down Expand Up @@ -213,7 +213,7 @@ fun MemberScreen(
viewModel.deleteAgency(
agencyId,
agencyList,
changeAgency,
onClickItem,
changeAgencyList
)
}
Expand Down

0 comments on commit 58fdc01

Please sign in to comment.