Skip to content

Commit 159b2b7

Browse files
committed
Fix unused modifier argument bug
1 parent 5af528e commit 159b2b7

File tree

1 file changed

+2
-2
lines changed
  • speld/src/main/java/com/yogeshpaliyal/speld

1 file changed

+2
-2
lines changed

speld/src/main/java/com/yogeshpaliyal/speld/OtpView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ fun PinInput(
9292
)
9393

9494
Row(
95-
modifier = Modifier.fillMaxWidth(),
95+
modifier = modifier.fillMaxWidth(),
9696
horizontalArrangement = Arrangement.Center
9797
) {
9898
repeat(length) {
9999
OtpCell(
100-
modifier = modifier
100+
modifier = Modifier
101101
.size(width = 45.dp, height = 45.dp)
102102
.clip(MaterialTheme.shapes.large)
103103
.background(

0 commit comments

Comments
 (0)