Skip to content

Commit

Permalink
Merge pull request #195 from Infomaniak/spacers-height
Browse files Browse the repository at this point in the history
fix: Use `height` instead of `size` for Spacers in Columns
  • Loading branch information
KevinBoulongne authored Nov 19, 2024
2 parents 875ddd7 + 4763342 commit 4de535b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ private fun ColumnScope.EmailAddressesTextFields(selectedTransferType: () -> Tra
modifier = Modifier.fillMaxWidth(),
label = stringResource(R.string.transferSenderAddressPlaceholder),
)
Spacer(Modifier.size(Margin.Medium))
Spacer(Modifier.height(Margin.Medium))
SwissTransferTextField(
modifier = Modifier.fillMaxWidth(),
label = stringResource(R.string.transferRecipientAddressPlaceholder),
)
Spacer(Modifier.size(Margin.Medium))
Spacer(Modifier.height(Margin.Medium))
}
}
}
Expand Down

0 comments on commit 4de535b

Please sign in to comment.