From 50f3f586ab4b5849b1d8b5157742009d49595fa7 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Wed, 18 Jun 2025 15:00:02 +0600 Subject: [PATCH] fixes --- .../compose/src/commonMain/kotlin/InfinityPagedComponent.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pagination/compose/src/commonMain/kotlin/InfinityPagedComponent.kt b/pagination/compose/src/commonMain/kotlin/InfinityPagedComponent.kt index 553a0cfc4fd..95b17437f3d 100644 --- a/pagination/compose/src/commonMain/kotlin/InfinityPagedComponent.kt +++ b/pagination/compose/src/commonMain/kotlin/InfinityPagedComponent.kt @@ -111,7 +111,7 @@ fun rememberInfinityPagedComponentContext( * receive null as `it` parameter */ @Composable -internal fun InfinityPagedComponent( +fun InfinityPagedComponent( context: InfinityPagedComponentContext, block: @Composable InfinityPagedComponentContext.(List?) -> Unit ) { @@ -130,7 +130,7 @@ internal fun InfinityPagedComponent( * receive null as `it` parameter */ @Composable -internal fun InfinityPagedComponent( +fun InfinityPagedComponent( page: Int, size: Int, loader: suspend InfinityPagedComponentContext.(Pagination) -> PaginationResult,