Skip to content

Commit

Permalink
fix: prayge ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
hollowshiroyuki committed Jul 3, 2024
1 parent 683edd8 commit a2515b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ fun GlobalAnimeSearchScreen(
modifier = Modifier
.focusProperties {
down = contentFocus
}
},
)
},
) { paddingValues ->
Expand All @@ -63,7 +63,7 @@ fun GlobalAnimeSearchScreen(
onClickSource = onClickSource,
onClickItem = onClickItem,
onLongClickItem = onLongClickItem,
modifier = Modifier.focusRequester(contentFocus)
modifier = Modifier.focusRequester(contentFocus),
)
}
}
Expand All @@ -81,7 +81,7 @@ internal fun GlobalSearchContent(
) {
LazyColumn(
contentPadding = contentPadding,
modifier = modifier
modifier = modifier,
) {
items.forEach { (source, result) ->
item(key = source.id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ internal fun BasePreferenceWidget(
modifier = modifier
.highlightBackground(highlighted)
.sizeIn(minHeight = minHeight)
.then( if (onClick != null) Modifier.clickable(onClick = onClick) else Modifier )
.then(if (onClick != null) Modifier.clickable(onClick = onClick) else Modifier)
.fillMaxWidth(),
verticalAlignment = Alignment.CenterVertically,
) {
Expand Down

0 comments on commit a2515b6

Please sign in to comment.