Skip to content

Commit

Permalink
[FEAT]#105: 이름 입력 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Aug 17, 2024
1 parent b9da159 commit f220519
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ data class SchoolList(
override val data: List<School>,
override val lastCursorId: Int,
override val hasNext: Boolean,
) : Paging<School>
) : Paging<School>
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ fun NameScreen(
return@WsTextField
}

if (name.length < 5) {
error = false
}
error = false
action(AuthAction.OnNameChanged(name))
},
placeholder = stringResource(id = R.string.enter_name),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import kotlinx.coroutines.flow.flow

data class AuthUiState(
val schoolName: String = "",
val schoolList: Flow<PagingData<School>> = flow { },
val schoolList: Flow<PagingData<School>> = flow { },
val selectedSchool: School? = null,
val grade: Int = -1,
val gradeBottomSheet: Boolean = true,
Expand Down

0 comments on commit f220519

Please sign in to comment.