Skip to content

Commit

Permalink
fix: Make onClick nullable in ArrowButton
Browse files Browse the repository at this point in the history
  • Loading branch information
Ushie committed Jul 30, 2024
1 parent 70a1453 commit 8d55d98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import app.revanced.manager.R
fun ArrowButton(
modifier: Modifier = Modifier,
expanded: Boolean,
onClick: (() -> Unit)?,
onClick: (() -> Unit)? = null,
rotationInitial: Float = 0f,
rotationFinal: Float = 180f
) {
Expand Down

0 comments on commit 8d55d98

Please sign in to comment.