Refactor away some unnecessary lambda expressions

This commit is contained in:
arkon
2023-03-26 13:27:31 -04:00
parent 1a61130f0b
commit be54b8862e
16 changed files with 37 additions and 47 deletions

View File

@@ -96,7 +96,7 @@ private fun GlobalSearchContent(
GlobalSearchCardRow(
titles = result.result,
getManga = { getManga(it) },
getManga = getManga,
onClick = onClickItem,
onLongClick = onLongClickItem,
)

View File

@@ -85,7 +85,7 @@ private fun MigrateSearchContent(
GlobalSearchCardRow(
titles = result.result,
getManga = { getManga(it) },
getManga = getManga,
onClick = onClickItem,
onLongClick = onLongClickItem,
)