Skip to content

Commit

Permalink
code optimized
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-alfresco committed Jan 8, 2024
1 parent 52a5885 commit 10d82c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ fun InputField(
}
}


OutlinedTextField(
colors = customTextFieldColors,
value = textFieldValue ?: "", // Initial value of the text field
Expand Down Expand Up @@ -207,7 +206,6 @@ fun InputFieldWithLeading(
}
}


OutlinedTextField(
colors = customTextFieldColors,
value = textFieldValue ?: "", // Initial value of the text field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ fun IntegerInputField(
var errorMessage = ""

if (!textFieldValue.isNullOrEmpty()) {

val minValue = fieldsData.minValue?.toInt() ?: 0
val maxValue = fieldsData.maxValue?.toInt() ?: 0

Expand Down

0 comments on commit 10d82c9

Please sign in to comment.