Skip to content

Commit

Permalink
refactor :: named argument 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
rladmsdh committed Feb 6, 2024
1 parent bfd1fb0 commit 90aed0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fun NavGraphBuilder.landing(
onSignInClick: () -> Unit,
onSignUpClick: () -> Unit,
) {
composable(route = NAVIGATION_LANDING) {
composable(NAVIGATION_LANDING) {
Landing(
onSignInClick = onSignInClick,
onSignUpClick = onSignUpClick,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fun NavGraphBuilder.signIn(
onBackPressed: () -> Unit,
onSignInSuccess: () -> Unit,
) {
composable(route = NAVIGATION_SIGN_IN) {
composable(NAVIGATION_SIGN_IN) {
SignIn(
onBackClick = onBackPressed,
onSignInSuccess = onSignInSuccess,
Expand Down

0 comments on commit 90aed0f

Please sign in to comment.