Skip to content

Commit

Permalink
fix: 조직 이름 비었을 때 버튼 비활성화 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Aug 27, 2024
1 parent caf2047 commit c737f64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class OrganizationCreationViewModel @Inject constructor(
}

private fun onClearOrganizationName() {
reduce { copy(organizationName = "") }
reduce { copy(organizationName = "", enabledStepButton = enabledStepButton.updateStepButton(step.currentStep, false)) }
}

private fun onClearFocus() {
Expand Down

0 comments on commit c737f64

Please sign in to comment.