Skip to content

Commit

Permalink
Replace also with if in Chart composable function
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalik committed Sep 25, 2023
1 parent 17c79de commit c714d9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public fun <Model : ChartEntryModel> Chart(
.value

ChartBox(modifier = modifier) {
model?.also { model ->
if (model != null) {
ChartImpl(
chart = chart,
model = model,
Expand Down

0 comments on commit c714d9b

Please sign in to comment.