Skip to content

Commit ae8db92

Browse files
Update the text field to not use passed in modifier. (#4506)
1 parent 688dd3a commit ae8db92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/x8bit/bitwarden/ui/platform/components/field/BitwardenTextField.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fun BitwardenTextField(
129129
Box(modifier = modifier) {
130130
OutlinedTextField(
131131
colors = bitwardenTextFieldColors(),
132-
modifier = modifier
132+
modifier = Modifier
133133
.testTag(textFieldTestTag.orEmpty())
134134
.onGloballyPositioned { widthPx = it.size.width }
135135
.onFocusEvent { focusState -> hasFocused = focusState.hasFocus }

0 commit comments

Comments
 (0)