Update the text field to not use passed in modifier. (#4506)

This commit is contained in:
Dave Severns
2024-12-23 15:51:11 -05:00
committed by GitHub
parent 688dd3a39b
commit ae8db9256c

View File

@@ -129,7 +129,7 @@ fun BitwardenTextField(
Box(modifier = modifier) {
OutlinedTextField(
colors = bitwardenTextFieldColors(),
modifier = modifier
modifier = Modifier
.testTag(textFieldTestTag.orEmpty())
.onGloballyPositioned { widthPx = it.size.width }
.onFocusEvent { focusState -> hasFocused = focusState.hasFocus }