Skip to content

Commit

Permalink
[CHORE] #125 : 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Feb 16, 2024
1 parent c34ea5f commit 204a99c
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ internal fun SignUpScreen(
)

SignUpTextField(
iconDescription = stringResource(
id = string.sign_up_student_id_description,
),
iconDescription = stringResource(id = string.sign_up_student_id_description),
text = viewModel.signUpStudentId.collectAsState().value,
title = stringResource(id = string.sign_up_student_id_title),
onValueChanged = { name -> viewModel.setStudentId(name) },
Expand All @@ -162,9 +160,7 @@ internal fun SignUpScreen(
title = stringResource(id = string.sign_up_registered_at_title),
onValueChanged = { name -> viewModel.setYear(name) },
hint = stringResource(id = string.sign_up_registered_at_hint),
supportingText = stringResource(
id = string.sign_up_registered_at_caption,
),
supportingText = stringResource(id = string.sign_up_registered_at_caption),
icon = ic_door,
modifier = Modifier.width(150.dp),
keyboardOptions = KeyboardOptions(
Expand Down

0 comments on commit 204a99c

Please sign in to comment.