Skip to content

Commit

Permalink
fix detekt
Browse files Browse the repository at this point in the history
  • Loading branch information
saleniuk committed Jun 3, 2024
1 parent e93eccc commit b2bb285
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,11 @@ private fun buildInlineText(
Box(
modifier = Modifier // It's only a placeholder as well, just to get the real size and position of the link.
.size(linkSizeDp)
.onGloballyPositioned { it.parentLayoutCoordinates?.let { onLinkPositionCalculated(it.positionInParent()) } }
.onGloballyPositioned {
it.parentLayoutCoordinates?.let {
onLinkPositionCalculated(it.positionInParent())
}
}
)
}
)
Expand Down

0 comments on commit b2bb285

Please sign in to comment.