Skip to content

Commit

Permalink
[refactor] : 라벨이름 ProfileLabel의 labelName으로 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
ham2174 committed Feb 13, 2024
1 parent e3dc1c4 commit ffcf53f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private fun NicknameRow(nickname: String, onNicknameChange: (String) -> Unit, is
}

Row {
FunchLargeLabel(text = "닉네임")
FunchLargeLabel(text = ProfileLabel.NICKNAME.labelName)
Column {
FunchMaxLengthTextField(
value = nickname,
Expand Down Expand Up @@ -234,7 +234,7 @@ private fun NicknameRow(nickname: String, onNicknameChange: (String) -> Unit, is
@Composable
private fun JobRow(profile: Profile, onSelected: (Job) -> Unit) {
Row {
FunchSmallLabel(text = "직군")
FunchSmallLabel(text = ProfileLabel.JOB.labelName)
FlowRow(
modifier = Modifier.fillMaxWidth(),
verticalArrangement = Arrangement.spacedBy(8.dp),
Expand Down Expand Up @@ -280,7 +280,7 @@ private fun JobRow(profile: Profile, onSelected: (Job) -> Unit) {
@Composable
private fun ClubRow(onSelectClub: (Club) -> Unit) {
Row {
FunchSmallLabel(text = "동아리")
FunchSmallLabel(text = ProfileLabel.CLUB.labelName)
FlowRow(
modifier = Modifier.fillMaxWidth(),
verticalArrangement = Arrangement.spacedBy(8.dp),
Expand Down

0 comments on commit ffcf53f

Please sign in to comment.