Skip to content

Commit

Permalink
[TNT-113] fix: 매개변수 순서 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonJeongk committed Jan 17, 2025
1 parent 050c68f commit 1796ac6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import co.kr.tnt.designsystem.theme.TnTTheme

@Composable
fun ProfileImageSection(
modifier: Modifier = Modifier,
defaultImage: Int,
modifier: Modifier = Modifier,
@Suppress("UnusedParameter")
onImageSelected: () -> Unit,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ fun TraineePTPurposeScreen() {
fun PurposeButton(
@StringRes textResId: Int,
isSelected: Boolean,
onClick: () -> Unit,
modifier: Modifier = Modifier,
onClick: () -> Unit,
) {
TnTTextButton(
text = stringResource(textResId),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fun TraineeProfileSetupScreen() {
)
Spacer(Modifier.padding(top = 48.dp))
ProfileImageSection(
Modifier.fillMaxWidth(),
modifier = Modifier.fillMaxWidth(),
defaultImage = R.drawable.img_default_profile_trainee,
onImageSelected = { },
)
Expand Down

0 comments on commit 1796ac6

Please sign in to comment.