Skip to content

Commit

Permalink
refactor: refactor class instantiation format
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisWooyeol committed Dec 7, 2023
1 parent 0695a4e commit d649ed9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ fun SignUpPage() {
title = "완료",
body = "계정 생성이 완료되었습니다.",
onDismissRequest = { showDialog = false },
confirm = { navController.navigateAsOrigin(NavigationDestination.Login)},
dismiss = {showDialog = false}
dismiss = { showDialog = false },
confirm = { navController.navigateAsOrigin(NavigationDestination.Login) }
)
}
}
Expand Down

0 comments on commit d649ed9

Please sign in to comment.