Skip to content

Commit

Permalink
🎨 Fix deprecation in ResultGridCell
Browse files Browse the repository at this point in the history
  • Loading branch information
CXwudi committed Apr 23, 2024
1 parent 40a0cbb commit 09e2b8f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,11 @@ fun RealThumbnail(
contentDescription = "Thumbnail",
modifier = imageHolderModifier
.clickable { urlHandler.openUri(url) },
onLoading = { CircularProgressIndicator(it) },
onLoading = {
CircularProgressIndicator(
progress = { it },
)
},
onFailure = {
if (currentPvInfoIndex < pvSize - 1) {
onCurrentPvInfoIndexChange(currentPvInfoIndex + 1)
Expand Down

0 comments on commit 09e2b8f

Please sign in to comment.