Skip to content

Commit

Permalink
Do not require a wifi password to connect Improv. (#5019)
Browse files Browse the repository at this point in the history
  • Loading branch information
abliss authored Jan 30, 2025
1 parent 01de087 commit 514057a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ fun ImprovWifiInput(
)
Button(
modifier = Modifier.padding(vertical = 8.dp).align(Alignment.CenterHorizontally),
enabled = ssidInput.isNotBlank() && passwordInput.isNotBlank(),
enabled = ssidInput.isNotBlank(),
onClick = { onSubmit(ssidInput, passwordInput) }
) {
Text(stringResource(commonR.string.continue_connect))
Expand Down

0 comments on commit 514057a

Please sign in to comment.