Skip to content

Commit

Permalink
Add missing trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe01 committed Jun 6, 2023
1 parent 05711cc commit 93d8619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/jerboa/ui/components/login/Login.kt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ fun LoginForm(
trailingIcon = {
TrailingIcon(expanded = expanded)
},
keyboardOptions = KeyboardOptions(autoCorrect = false, keyboardType = KeyboardType.Uri)
keyboardOptions = KeyboardOptions(autoCorrect = false, keyboardType = KeyboardType.Uri),
)
ExposedDropdownMenu(
expanded = expanded,
Expand Down Expand Up @@ -161,7 +161,7 @@ fun LoginForm(
Button(
enabled = isValid && !loading,
onClick = { onClickLogin(form, instance) },
modifier = Modifier.padding(top = 10.dp)
modifier = Modifier.padding(top = 10.dp),
) {
if (loading) {
CircularProgressIndicator()
Expand Down

0 comments on commit 93d8619

Please sign in to comment.