Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9530e3d3 authored by Davor Poznič's avatar Davor Poznič
Browse files

Fixed autofill on email/username text fields in incoming and outgoing server settings.

parent c40b6fc2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ fun TextInput(
    keyboardOptions: KeyboardOptions = KeyboardOptions.Default,
) {
    InputLayout(
        modifier = modifier,
        modifier = Modifier,
        contentPadding = contentPadding,
        errorMessage = errorMessage,
    ) {
@@ -34,7 +34,7 @@ fun TextInput(
            isRequired = isRequired,
            hasError = errorMessage != null,
            isSingleLine = isSingleLine,
            modifier = Modifier.fillMaxWidth(),
            modifier = modifier.fillMaxWidth(),
            keyboardOptions = keyboardOptions,
        )
    }