Skip to content

Commit

Permalink
fix: Use height instead of size for Spacers in Columns
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoulongne committed Nov 19, 2024
1 parent 17c9b02 commit eae08e3
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 eae08e3

Please sign in to comment.